You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2017/04/24 09:07:50 UTC

ignite git commit: IGNITE-2578 .NET: Un-ignore AtomicReference tests

Repository: ignite
Updated Branches:
  refs/heads/ignite-2.0 8a1ded1cf -> 09b65075b


IGNITE-2578 .NET: Un-ignore AtomicReference tests


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/09b65075
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/09b65075
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/09b65075

Branch: refs/heads/ignite-2.0
Commit: 09b65075b12ff6ea0a54a404e0f339a6538143f1
Parents: 8a1ded1
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Mon Apr 24 12:07:42 2017 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Mon Apr 24 12:07:42 2017 +0300

----------------------------------------------------------------------
 .../Apache.Ignite.Core.Tests/DataStructures/AtomicReferenceTest.cs | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/09b65075/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicReferenceTest.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicReferenceTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicReferenceTest.cs
index 93375da..751b291 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicReferenceTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicReferenceTest.cs
@@ -128,7 +128,6 @@ namespace Apache.Ignite.Core.Tests.DataStructures
         /// Tests DateTime in the atomic.
         /// </summary>
         [Test]
-        [Ignore("IGNITE-2578")]
         public void TestDateTime()
         {
             TestOperations(DateTime.Now, DateTime.Now.AddDays(-1));
@@ -138,7 +137,6 @@ namespace Apache.Ignite.Core.Tests.DataStructures
         /// Tests serializable objects in the atomic.
         /// </summary>
         [Test]
-        [Ignore("IGNITE-2578")]
         public void TestSerializable()
         {
             TestOperations(new SerializableObj {Foo = 16}, new SerializableObj {Foo = -5});