Skip to content

Commit

Permalink
COH-31396 Build: failure in ContinuousQueryCacheInsertTest
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//dev/main.net/": change = 112715]
  • Loading branch information
vasac committed Dec 5, 2024
1 parent b43b9ef commit d1f1631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Coherence.Tests/Net/Cache/ContinuousQueryCacheTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,10 +299,10 @@ public void ContinuousQueryCacheInsertTest()
// event due to expiry as soon as it happened instead of
// when the next cache operation occurrs. So, change
// the test accordingly.
cache.Insert("key6", 173, 200);
cache.Insert("key6", 173, 400);
Blocking.Sleep(100);
Assert.AreNotEqual(null, cache["key6"]);
Thread.Sleep(400);
Thread.Sleep(600);
Assert.AreEqual(null, cache.Cache["key6"]);

// updating a cache with the value that does not satisfies
Expand Down

0 comments on commit d1f1631

Please sign in to comment.