Repository: ignite Updated Branches: refs/heads/ignite-1.4 82ca43176 -> cbc8877ac
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-1.4 Commit: cbc8877acc3f5c86aa4320dc60c3d4de64c9d9dd Parents: 82ca431 Author: vozerov-gridgain <[email protected]> Authored: Fri Sep 11 14:44:53 2015 +0300 Committer: vozerov-gridgain <[email protected]> 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
