# ignite-60
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/165698d2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/165698d2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/165698d2 Branch: refs/heads/ignite-24 Commit: 165698d2983cf449ec3f09565fb7a5f87c4b5889 Parents: e3598a9 Author: sboikov <sboi...@gridgain.com> Authored: Mon Jan 26 12:43:48 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Mon Jan 26 12:43:48 2015 +0300 ---------------------------------------------------------------------- .../cache/GridCacheAbstractFullApiSelfTest.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/165698d2/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractFullApiSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractFullApiSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractFullApiSelfTest.java index b0b0a5a..7f17746 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractFullApiSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractFullApiSelfTest.java @@ -1245,19 +1245,19 @@ public abstract class GridCacheAbstractFullApiSelfTest extends GridCacheAbstract cache.put("key2", 1); cache.put("key3", 3); - cache = cache.enableAsync(); + IgniteCache<String, Integer> asyncCache = cache.enableAsync(); - assertNull(cache.invoke("key1", INCR_PROCESSOR)); + assertNull(asyncCache.invoke("key1", INCR_PROCESSOR)); - IgniteFuture<?> fut0 = cache.future(); + IgniteFuture<?> fut0 = asyncCache.future(); - assertNull(cache.invoke("key2", INCR_PROCESSOR)); + assertNull(asyncCache.invoke("key2", INCR_PROCESSOR)); - IgniteFuture<?> fut1 = cache.future(); + IgniteFuture<?> fut1 = asyncCache.future(); - assertNull(cache.invoke("key3", RMV_PROCESSOR)); + assertNull(asyncCache.invoke("key3", RMV_PROCESSOR)); - IgniteFuture<?> fut2 = cache.future(); + IgniteFuture<?> fut2 = asyncCache.future(); fut0.get(); fut1.get();