aboutsummaryrefslogtreecommitdiffstats
path: root/guava-tests/test/com/google/common/cache/EmptyCachesTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-tests/test/com/google/common/cache/EmptyCachesTest.java')
-rw-r--r--guava-tests/test/com/google/common/cache/EmptyCachesTest.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/guava-tests/test/com/google/common/cache/EmptyCachesTest.java b/guava-tests/test/com/google/common/cache/EmptyCachesTest.java
index 994f236..c31cf68 100644
--- a/guava-tests/test/com/google/common/cache/EmptyCachesTest.java
+++ b/guava-tests/test/com/google/common/cache/EmptyCachesTest.java
@@ -40,9 +40,7 @@ import java.util.concurrent.ExecutionException;
*
* @author mike nonemacher
*/
-
public class EmptyCachesTest extends TestCase {
-
public void testEmpty() {
for (LoadingCache<Object, Object> cache : caches()) {
checkEmpty(cache);
@@ -316,7 +314,7 @@ public class EmptyCachesTest extends TestCase {
assertFalse(entrySet.remove(entryOf(6, 6)));
assertFalse(entrySet.remove(entryOf(-6, -6)));
assertFalse(entrySet.removeAll(asList(null, entryOf(0, 0), entryOf(15, 15))));
- assertFalse(entrySet.retainAll(asList(null, entryOf(0, 0), entryOf(15, 15))));
+ assertFalse(entrySet.retainAll( asList(null, entryOf(0, 0), entryOf(15, 15))));
checkEmpty(entrySet);
checkEmpty(cache);
}