diff --git
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTest.cs
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTest.cs
index 0e30ae0ce568..16a1e6034bcb 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/ServicesTest.cs
@@ -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);
@@ -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);
With regards,
Apache Git Services