Skip to content

Commit

Permalink
Increase upper limit to 3s (#4112)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardnormier authored Nov 15, 2024
1 parent 3a8cef7 commit 7a8c2a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/IceRpc.Tests/ProtocolConnectionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ public async Task ShutdownRequested_completes_when_inactive_and_inactive_timeout
// Assert
Assert.That(
TimeSpan.FromMilliseconds(Environment.TickCount64 - startTime),
Is.GreaterThan(TimeSpan.FromMilliseconds(990)).And.LessThan(TimeSpan.FromSeconds(2)));
Is.GreaterThan(TimeSpan.FromMilliseconds(990)).And.LessThan(TimeSpan.FromSeconds(3)));
}

/// <summary>Verifies that an abortive shutdown completes ShutdownRequested.</summary>
Expand Down

0 comments on commit 7a8c2a7

Please sign in to comment.