Skip to content

Commit 2036d81

Browse files
authored
.Net: Fix flakey web search model test (#12434)
### Description Fix flakey web search model test ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent a69d7d3 commit 2036d81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/IntegrationTests/Connectors/OpenAI/OpenAIChatCompletion_NonStreamingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public async Task ChatCompletionWithWebSearchAsync()
154154
};
155155

156156
// Act
157-
var result = await chatService.GetChatMessageContentAsync("What are the top 3 trending news currently", settings, kernel);
157+
var result = await chatService.GetChatMessageContentAsync("What are the top 3 trending news items from the web today?", settings, kernel);
158158

159159
// Assert
160160
var chatCompletion = Assert.IsType<ChatCompletion>(result.InnerContent);

0 commit comments

Comments
 (0)