Skip to content

Commit

Permalink
Update EventStoreFunctionalTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
fredimachado committed Nov 28, 2024
1 parent 20e91bf commit cdae698
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public async Task WithDataShouldPersistStateBetweenUsages(bool useVolume)
eventstore1.WithDataBindMount(bindMountPath);
}

var cts1 = new CancellationTokenSource(TimeSpan.FromMinutes(2));
var cts1 = new CancellationTokenSource(TimeSpan.FromMinutes(5));
using (var app = builder1.Build())
{
await app.StartAsync(cts1.Token);
Expand Down Expand Up @@ -124,7 +124,7 @@ public async Task WithDataShouldPersistStateBetweenUsages(bool useVolume)
eventstore2.WithDataBindMount(bindMountPath!);
}

var cts2 = new CancellationTokenSource(TimeSpan.FromMinutes(2));
var cts2 = new CancellationTokenSource(TimeSpan.FromMinutes(5));
using (var app = builder2.Build())
{
await app.StartAsync(cts2.Token);
Expand Down

0 comments on commit cdae698

Please sign in to comment.