From f39e76cfa64f649e9297bab319ef6ddd58995e0e Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Fri, 19 Jul 2024 21:41:26 -0500 Subject: [PATCH] chore: debug test failure in CI --- tests/AnthropicClient.Tests/EndToEnd/AnthropicApiClientTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/AnthropicClient.Tests/EndToEnd/AnthropicApiClientTests.cs b/tests/AnthropicClient.Tests/EndToEnd/AnthropicApiClientTests.cs index 25abb08..0072aec 100644 --- a/tests/AnthropicClient.Tests/EndToEnd/AnthropicApiClientTests.cs +++ b/tests/AnthropicClient.Tests/EndToEnd/AnthropicApiClientTests.cs @@ -77,6 +77,7 @@ public class ClientTests(ConfigurationFixture configFixture) : EndToEndTest(conf var result = await _client.CreateMessageAsync(request); + result.Error.Error.Message.Should().BeNullOrEmpty(); result.IsSuccess.Should().BeTrue(); result.Value.Should().BeOfType(); result.Value.Content.Should().NotBeNullOrEmpty();