From fcacf5c56179179a7bfde59765376ab928e0cc5f Mon Sep 17 00:00:00 2001 From: John Smith Date: Thu, 31 Oct 2024 16:31:23 +1030 Subject: [PATCH] chore: Add test result --- sdk-dotnet/tests/Inferable.Tests/InferableTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk-dotnet/tests/Inferable.Tests/InferableTest.cs b/sdk-dotnet/tests/Inferable.Tests/InferableTest.cs index 9898d305..f5be14af 100644 --- a/sdk-dotnet/tests/Inferable.Tests/InferableTest.cs +++ b/sdk-dotnet/tests/Inferable.Tests/InferableTest.cs @@ -238,7 +238,7 @@ async public void Inferable_Run_E2E() Description = "A simple greeting function", Func = new Func((input) => { didCallSayHello = true; - return null; + return $"Hello {input.testString}"; }), });