Skip to content

Commit

Permalink
# IGNITE-56 Fix GridCacheBasicStoreAbstractTest.testReloadCache test
Browse files Browse the repository at this point in the history
  • Loading branch information
sevdokimov-gg committed Feb 6, 2015
1 parent d227081 commit 0194aef
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -382,15 +382,19 @@ public void testReloadCache() throws Exception {

checkLastMethod("loadAllFull");

Set<Integer> keys = new HashSet<>();

for (int i = 1; i <= 10; i++) {
keys.add(i);

cache.put(i, Integer.toString(i));

checkLastMethod("put");
}

assert cache.size() == 10;

cache.localLoadCache(null);
loadAll(cache, keys, true);

checkLastMethod("loadAll");

Expand Down

0 comments on commit 0194aef

Please sign in to comment.