Skip to content

Commit 2ce5fd7

Browse files
committed
fix
1 parent d223fa7 commit 2ce5fd7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/Services/Basket/Basket.API.IntegrationTests/ApiSpecification.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class GetWebApiContainerFactory : ICollectionFixture<ApiSpecification>
1616
}
1717
public class ApiSpecification : IAsyncLifetime
1818
{
19-
private readonly CancellationTokenSource _timeoutCancellationTokenSource = new(TimeSpan.FromSeconds(30));
19+
private readonly CancellationTokenSource _timeoutCancellationTokenSource = new(TimeSpan.FromSeconds(40));
2020
private IDistributedCache? _cache;
2121
private WireMockServer? _discountWireMockServer;
2222
private ApiFactory? _factory;

src/Services/Identity/Identity.API/Identity.API.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@
3838
</ItemGroup>
3939

4040
<ItemGroup>
41-
<ProjectReference Include="..\..\Shared\Shared.csproj" />
41+
<ProjectReference Include="..\..\Shared\Shared.csproj" />
4242
</ItemGroup>
4343
</Project>

src/Services/IntegrationTests.Common/IntegrationTests.Common.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="OpenTelemetry.Exporter.Console" />
11-
<PackageReference Include="OpenTelemetry.Extensions.Hosting" />
10+
<PackageReference Include="OpenTelemetry.Exporter.Console" />
11+
<PackageReference Include="OpenTelemetry.Extensions.Hosting" />
1212
</ItemGroup>
1313

1414
</Project>

src/Services/Order.Query/Order.Query.API.IntegrationTests/ApiFactory.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ public async Task InitializeAsync()
8585
}
8686

8787
public new async Task DisposeAsync()
88-
{
89-
await _webApiContainerFactory.DisposeAsync();
90-
HttpClient.Dispose();
88+
{
89+
await _webApiContainerFactory.DisposeAsync();
90+
HttpClient.Dispose();
9191
}
9292
}

0 commit comments

Comments
 (0)