Skip to content

Commit

Permalink
Merge pull request #5804 from daradurvs/ignite-10888
Browse files Browse the repository at this point in the history
IGNITE-10888 fixed flaky .NET: ServicesTest.TestGetServiceProxy(False)
  • Loading branch information
nizhikov committed Jan 15, 2019
2 parents 9a614e7 + e63a884 commit bd24340
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public void TestGetServiceProxy([Values(true, false)] bool binarizable)
Assert.AreEqual(prx.ToString(), svc.ToString());
Assert.AreEqual(17, prx.TestProperty);
Assert.IsTrue(prx.Initialized);
Assert.IsTrue(prx.Executed);
Assert.IsTrue(TestUtils.WaitForCondition(() => prx.Executed, 5000));
Assert.IsFalse(prx.Cancelled);
Assert.AreEqual(SvcName, prx.LastCallContextName);

Expand Down Expand Up @@ -337,7 +337,7 @@ public void TestGetDynamicServiceProxy()
// Property getter.
Assert.AreEqual(37, prx.TestProperty);
Assert.IsTrue(prx.Initialized);
Assert.IsTrue(prx.Executed);
Assert.IsTrue(TestUtils.WaitForCondition(() => prx.Executed, 5000));
Assert.IsFalse(prx.Cancelled);
Assert.AreEqual(SvcName, prx.LastCallContextName);

Expand Down

0 comments on commit bd24340

Please sign in to comment.