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/09/15 01:12:52 UTC

[11/41] ignite git commit: Fixed IGFS test which failed because of incorrect GridCacheContext.systemTx() assertion.

Fixed IGFS test which failed because of incorrect GridCacheContext.systemTx() assertion.


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

Branch: refs/heads/ignite-1400
Commit: cbc8877acc3f5c86aa4320dc60c3d4de64c9d9dd
Parents: 82ca431
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Fri Sep 11 14:44:53 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Fri Sep 11 14:44:53 2015 +0300

----------------------------------------------------------------------
 .../apache/ignite/internal/processors/igfs/IgfsStartCacheTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/cbc8877a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsStartCacheTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsStartCacheTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsStartCacheTest.java
index f6a7a72..56559cb 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsStartCacheTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsStartCacheTest.java
@@ -157,7 +157,7 @@ public class IgfsStartCacheTest extends IgfsCommonAbstractTest {
     private void checkCache(GridCacheAdapter cache) {
         assertNotNull(cache);
         assertFalse(cache.context().userCache());
-        assertFalse(cache.context().systemTx());
+        assertTrue(cache.context().systemTx());
         assertEquals(SYSTEM_POOL, cache.context().ioPolicy());
     }
 }
\ No newline at end of file