diff --git a/tests/BotSharp.Plugin.SemanticKernel.UnitTests/SemanticKernelChatCompletionProviderTests.cs b/tests/BotSharp.Plugin.SemanticKernel.UnitTests/SemanticKernelChatCompletionProviderTests.cs index d6ef22ae..8c564a1a 100644 --- a/tests/BotSharp.Plugin.SemanticKernel.UnitTests/SemanticKernelChatCompletionProviderTests.cs +++ b/tests/BotSharp.Plugin.SemanticKernel.UnitTests/SemanticKernelChatCompletionProviderTests.cs @@ -27,7 +27,7 @@ namespace BotSharp.Plugin.SemanticKernel.Tests } [Fact] - public void GetChatCompletions_Returns_RoleDialogModel() + public async void GetChatCompletions_Returns_RoleDialogModel() { // Arrange var agent = new Agent(); @@ -53,7 +53,7 @@ namespace BotSharp.Plugin.SemanticKernel.Tests // Act - var result = _provider.GetChatCompletions(agent, conversations); + var result = await _provider.GetChatCompletions(agent, conversations); // Assert Assert.IsType(result);