You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2015/07/25 04:30:33 UTC

incubator-ignite git commit: IGNITE-1159 - Fixed MVCC test

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-1159 45308bcb7 -> bc18024fd


IGNITE-1159 - Fixed MVCC test


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

Branch: refs/heads/ignite-1159
Commit: bc18024fd4d99829cc29f77d93a9181c81e90a68
Parents: 45308bc
Author: Alexey Goncharuk <ag...@gridgain.com>
Authored: Fri Jul 24 19:30:25 2015 -0700
Committer: Alexey Goncharuk <ag...@gridgain.com>
Committed: Fri Jul 24 19:30:25 2015 -0700

----------------------------------------------------------------------
 .../ignite/internal/processors/cache/GridCacheMvccSelfTest.java     | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bc18024f/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMvccSelfTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMvccSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMvccSelfTest.java
index be7e3c9..2a4365d 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMvccSelfTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMvccSelfTest.java
@@ -1387,7 +1387,6 @@ public class GridCacheMvccSelfTest extends GridCommonAbstractTest {
 
         ctx.mvcc().addNext(ctx, c4);
 
-        assert c3.previous() == null;
         assert c4 != null;
         assert c4.previous() == c3;
     }