tests: fix assertions

This commit is contained in:
Stevan Freeborn
2025-01-05 21:37:50 -06:00
parent 8bbd4bb7c8
commit 9abad390f1
@@ -976,7 +976,7 @@ public class AnthropicApiClientTests : IntegrationTest
var result = await Client.GetModelAsync(modelId); var result = await Client.GetModelAsync(modelId);
result.IsSuccess.Should().BeFalse(); result.IsSuccess.Should().BeTrue();
result.Error.Should().BeOfType<AnthropicModel>(); result.Value.Should().BeOfType<AnthropicModel>();
} }
} }