#ignite-565: remove GridCache from tests.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/3631132c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/3631132c Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/3631132c Branch: refs/heads/ignite-611 Commit: 3631132c5cce0c839f7d03d5651119f62a39a848 Parents: e12a4e2 Author: ivasilinets <ivasilin...@gridgain.com> Authored: Wed Mar 25 14:43:20 2015 +0300 Committer: ivasilinets <ivasilin...@gridgain.com> Committed: Wed Mar 25 14:43:20 2015 +0300 ---------------------------------------------------------------------- .../near/GridCacheNearOnlyMultiNodeFullApiSelfTest.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3631132c/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearOnlyMultiNodeFullApiSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearOnlyMultiNodeFullApiSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearOnlyMultiNodeFullApiSelfTest.java index 2923438..a850c5e 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearOnlyMultiNodeFullApiSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearOnlyMultiNodeFullApiSelfTest.java @@ -395,11 +395,8 @@ public class GridCacheNearOnlyMultiNodeFullApiSelfTest extends GridCachePartitio return false; } - // Get "cache" field from GridCacheProxyImpl. - GridCacheAdapter c0 = GridTestUtils.getFieldValue(c, "cache"); - - if (!c0.context().deferredDelete()) { - GridCacheEntryEx e0 = c0.peekEx(key); + if (!internalCache(c).context().deferredDelete()) { + GridCacheEntryEx e0 = internalCache(c).peekEx(key); return e0 == null || (e0.rawGet() == null && e0.valueBytes() == null); }