Skip to content

Commit

Permalink
fix renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
gcbeattyAWS committed Dec 18, 2024
1 parent f13a9f5 commit 2887025
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Amazon.Lambda.TestTool.IntegrationTests
{
[CollectionDefinition("ApiGateway Integration Tests")]
public class ApiGatewayResponseIntegrationTestCollection : ICollectionFixture<ApiGatewayResponseIntegrationTestFixture>
public class ApiGatewayIntegrationTestCollection : ICollectionFixture<ApiGatewayIntegrationTestFixture>
{

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ namespace Amazon.Lambda.TestTool.IntegrationTests
[Collection("ApiGateway Integration Tests")]
public class ApiGatewayResponseExtensionsTests
{
private readonly ApiGatewayResponseIntegrationTestFixture _fixture;
private readonly ApiGatewayIntegrationTestFixture _fixture;

public ApiGatewayResponseExtensionsTests(ApiGatewayResponseIntegrationTestFixture fixture)
public ApiGatewayResponseExtensionsTests(ApiGatewayIntegrationTestFixture fixture)
{
_fixture = fixture;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ namespace Amazon.Lambda.TestTool.IntegrationTests
[Collection("ApiGateway Integration Tests")]
public class ApiGatewayResponseExtensionsTestsManual
{
private readonly ApiGatewayResponseIntegrationTestFixture _fixture;
private readonly ApiGatewayIntegrationTestFixture _fixture;
private readonly HttpClient _httpClient;

public ApiGatewayResponseExtensionsTestsManual(ApiGatewayResponseIntegrationTestFixture fixture)
public ApiGatewayResponseExtensionsTestsManual(ApiGatewayIntegrationTestFixture fixture)
{
_fixture = fixture;
_httpClient = new HttpClient();
Expand Down

0 comments on commit 2887025

Please sign in to comment.