diff --git a/README.md b/README.md index 3880267..37b715d 100644 --- a/README.md +++ b/README.md @@ -190,11 +190,11 @@ Afterwards, you'll need to instantiate the `SemanticKernelAssert` class in your ```csharp public class MyTest { - SemanticAssert SemanticAssert { get; set; } + ScenarioAssert ScenarioAssert { get; set; } MyTest(ITestOutputHelper output) { var chatClient = new AzureOpenAIClient(...); - SemanticAssert = new SemanticAssert(chatClient); + ScenarioAssert = new ScenarioAssert(chatClient, output.WriteLine); } [Fact]