You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by gv...@apache.org on 2019/02/08 09:22:38 UTC

[ignite] branch master updated: IGNITE-10765: MVCC TX: Unmute tests. This closes #6038.

This is an automated email from the ASF dual-hosted git repository.

gvvinblade pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new ea8197a  IGNITE-10765: MVCC TX: Unmute tests. This closes #6038.
ea8197a is described below

commit ea8197a023ef9a925d7700a5a086815db8f30a93
Author: ipavlukhin <vo...@gmail.com>
AuthorDate: Fri Feb 8 12:22:29 2019 +0300

    IGNITE-10765: MVCC TX: Unmute tests. This closes #6038.
---
 .../apache/ignite/testsuites/IgniteCacheMvccSqlTestSuite.java    | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccSqlTestSuite.java b/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccSqlTestSuite.java
index 130e754..e7e370b 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccSqlTestSuite.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccSqlTestSuite.java
@@ -72,8 +72,6 @@ import org.apache.ignite.internal.processors.cache.mvcc.MvccDeadlockDetectionTes
 import org.apache.ignite.internal.processors.cache.mvcc.MvccRepeatableReadBulkOpsTest;
 import org.apache.ignite.internal.processors.cache.mvcc.MvccRepeatableReadOperationsTest;
 import org.apache.ignite.internal.processors.query.h2.GridIndexRebuildWithMvccEnabledSelfTest;
-import org.junit.Ignore;
-import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Suite;
 
@@ -199,12 +197,5 @@ public class IgniteCacheMvccSqlTestSuite {
         @Override protected CacheAtomicityMode atomicityMode() {
             return TRANSACTIONAL_SNAPSHOT;
         }
-
-        /** {@inheritDoc} */
-        @Ignore("https://issues.apache.org/jira/browse/IGNITE-10765")
-        @Test
-        @Override public void testManyKeysRollback() throws Exception {
-            super.testManyKeysRollback();
-        }
     }
 }