tests: don't reuse http client as fixture

This commit is contained in:
Stevan Freeborn
2024-06-29 09:49:15 -05:00
parent ffee24d8ec
commit 6caa4b1b06
3 changed files with 9 additions and 15 deletions
@@ -1,9 +1,6 @@
namespace AnthropicClient.Tests.EndToEnd;
public class ClientTests(
HttpClientFixture httpClientFixture,
ConfigurationFixture configFixture
) : EndToEndTest(httpClientFixture, configFixture)
public class ClientTests(ConfigurationFixture configFixture) : EndToEndTest(configFixture)
{
[Fact]
public async Task CreateChatMessage_WhenCalled_ItShouldReturnChatResponse()