# IGNITE-56 Fix GridCachePartitionedBasicStoreMultiNodeSelfTest.testMultipleOperations().
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/32d4dec8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/32d4dec8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/32d4dec8 Branch: refs/heads/ignite-181 Commit: 32d4dec8e076827947bf65b7646ac41a0c13309e Parents: 8992c6c Author: sevdokimov <sergey.evdoki...@jetbrains.com> Authored: Sun Feb 8 21:18:17 2015 +0300 Committer: sevdokimov <sergey.evdoki...@jetbrains.com> Committed: Sun Feb 8 21:18:17 2015 +0300 ---------------------------------------------------------------------- .../near/GridCachePartitionedBasicStoreMultiNodeSelfTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/32d4dec8/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedBasicStoreMultiNodeSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedBasicStoreMultiNodeSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedBasicStoreMultiNodeSelfTest.java index ed5c359..f6d66b8 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedBasicStoreMultiNodeSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedBasicStoreMultiNodeSelfTest.java @@ -310,6 +310,7 @@ public class GridCachePartitionedBasicStoreMultiNodeSelfTest extends GridCommonA */ public void testMultipleOperations() throws Exception { IgniteCache<Integer, String> cache = jcache(0); + //GridCache<Integer, String> cache = cache(0); try (IgniteTx tx = grid(0).transactions().txStart(OPTIMISTIC, REPEATABLE_READ)) { cache.put(1, "val"); @@ -323,7 +324,7 @@ public class GridCachePartitionedBasicStoreMultiNodeSelfTest extends GridCommonA tx.commit(); } - checkStoreUsage(4, 0, 1, 1); + checkStoreUsage(1, 0, 1, 1); } /**