Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1179010D07 for ; Tue, 15 Sep 2015 06:00:36 +0000 (UTC) Received: (qmail 81021 invoked by uid 500); 15 Sep 2015 06:00:36 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 80912 invoked by uid 500); 15 Sep 2015 06:00:35 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 80587 invoked by uid 99); 15 Sep 2015 06:00:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Sep 2015 06:00:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9788BE099D; Tue, 15 Sep 2015 06:00:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Tue, 15 Sep 2015 06:00:45 -0000 Message-Id: In-Reply-To: <5cfd9c7681cb42bfba457ae518a1eba2@git.apache.org> References: <5cfd9c7681cb42bfba457ae518a1eba2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/46] 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/master Commit: cbc8877acc3f5c86aa4320dc60c3d4de64c9d9dd Parents: 82ca431 Author: vozerov-gridgain Authored: Fri Sep 11 14:44:53 2015 +0300 Committer: vozerov-gridgain 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