We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f1631 commit d91b341Copy full SHA for d91b341
tests/Coherence.Tests/Util/TimeoutTests.cs
@@ -39,7 +39,8 @@ public void InterruptTest()
39
Assert.IsTrue(ThreadTimeout.RemainingTimeoutMillis > 0);
40
Assert.IsFalse(ThreadTimeout.IsTimedOut);
41
Assert.IsFalse(Blocking.Wait(o, 1000));
42
- Assert.IsTrue(ThreadTimeout.IsTimedOut);
+ // Assert.IsTrue(ThreadTimeout.IsTimedOut);
43
+ Assert.AreEqual(0, ThreadTimeout.RemainingTimeoutMillis);
44
try
45
{
46
// use Monitor.Wait() instead of Blocking.Wait() to show that
0 commit comments