# ignite-sprint-7 fixed test
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/847ddf54 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/847ddf54 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/847ddf54 Branch: refs/heads/ignite-973-2 Commit: 847ddf543d635144d8c33f4afc33e76d0de92143 Parents: 01d842a Author: sboikov <sboi...@gridgain.com> Authored: Fri Jun 26 16:02:50 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Fri Jun 26 16:02:50 2015 +0300 ---------------------------------------------------------------------- .../near/GridCachePartitionedMultiNodeFullApiSelfTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/847ddf54/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedMultiNodeFullApiSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedMultiNodeFullApiSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedMultiNodeFullApiSelfTest.java index 9445f9c..30c9e8a 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedMultiNodeFullApiSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCachePartitionedMultiNodeFullApiSelfTest.java @@ -358,7 +358,9 @@ public class GridCachePartitionedMultiNodeFullApiSelfTest extends GridCacheParti assertEquals(0, cache1.localSize(NEAR)); assertEquals(5, cache1.localSize(CachePeekMode.ALL) - cache1.localSize(NEAR)); - assertEquals(nearEnabled() ? 2 : 0, cache2.localSize(NEAR)); + boolean nearEnabled = cache2.getConfiguration(CacheConfiguration.class).getNearConfiguration() != null; + + assertEquals(nearEnabled ? 2 : 0, cache2.localSize(NEAR)); assertEquals(0, cache2.localSize(CachePeekMode.ALL) - cache2.localSize(NEAR)); }