Skip to content

Commit 7b6a804

Browse files
committed
test: increase test timeout
1 parent 2d62179 commit 7b6a804

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/Directory.Packages.props

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@
99
<PackageVersion Include="Akka.TestKit.Xunit" Version="1.5.67" />
1010
<PackageVersion Include="Servus.Akka" Version="0.3.10" />
1111
<PackageVersion Include="Servus.Core" Version="0.33.10" />
12+
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
1213
</ItemGroup>
1314
<ItemGroup Label="Testing">
14-
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.6.2" />
15+
<PackageVersion Include="Akka.Streams.TestKit" Version="1.5.65" />
16+
<PackageVersion Include="Akka.TestKit.Xunit" Version="1.5.65" />
1517
<PackageVersion Include="xunit.v3.mtp-v2" Version="3.2.2" />
1618
<PackageVersion Include="PublicApiGenerator" Version="11.5.4" />
1719
<PackageVersion Include="Verify.DiffPlex" Version="3.1.2" />
1820
<PackageVersion Include="Verify.XunitV3" Version="31.16.1" />
21+
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.6.2" />
1922
</ItemGroup>
2023
<ItemGroup Label="Benchmarks">
2124
<PackageVersion Include="BenchmarkDotNet" Version="0.15.8" />
2225
</ItemGroup>
2326
<ItemGroup Label="Memory">
24-
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
2527
</ItemGroup>
2628
</Project>

src/Servus.Akka.Tests/Transport/Tcp/Client/TcpClientProviderSpec.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ await Assert.ThrowsAsync<SocketException>(async () =>
289289
await provider.DisposeAsync();
290290
}
291291

292-
[Fact(Timeout = 10_000)]
292+
[Fact(Timeout = 30_000)]
293293
public async Task GetStreamAsync_with_custom_buffer_sizes_should_not_throw_on_configuration()
294294
{
295295
var options = new TcpTransportOptions
@@ -312,7 +312,7 @@ public async Task GetStreamAsync_with_custom_buffer_sizes_should_not_throw_on_co
312312
await provider.DisposeAsync();
313313
}
314314

315-
[Fact(Timeout = 10_000)]
315+
[Fact(Timeout = 30_000)]
316316
public async Task GetStreamAsync_with_zero_buffer_sizes_should_not_throw_on_configuration()
317317
{
318318
var options = new TcpTransportOptions

0 commit comments

Comments
 (0)