aboutsummaryrefslogtreecommitdiff
path: root/guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java')
-rw-r--r--guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java b/guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java
index 049da4cbc..5ba863c73 100644
--- a/guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java
+++ b/guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java
@@ -17,7 +17,6 @@ package com.google.common.collect;
import static com.google.common.truth.Truth.assertWithMessage;
-import com.google.common.annotations.GwtCompatible;
import com.google.common.annotations.GwtIncompatible;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import java.util.Arrays;
@@ -35,7 +34,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
* Abstract superclass for tests that hash flooding a collection has controlled worst-case
* performance.
*/
-@GwtCompatible
+@GwtIncompatible
public abstract class AbstractHashFloodingTest<T> extends TestCase {
private final List<Construction<T>> constructions;
private final IntToDoubleFunction constructionAsymptotics;
@@ -188,7 +187,6 @@ public abstract class AbstractHashFloodingTest<T> extends TestCase {
return result;
}
- @GwtIncompatible
public void testResistsHashFloodingInConstruction() {
CallsCounter smallCounter = new CallsCounter();
List<CountsHashCodeAndEquals> haveSameHashesSmall = createAdversarialInput(10, smallCounter);
@@ -221,7 +219,6 @@ public abstract class AbstractHashFloodingTest<T> extends TestCase {
}
}
- @GwtIncompatible
public void testResistsHashFloodingOnQuery() {
CallsCounter smallCounter = new CallsCounter();
List<CountsHashCodeAndEquals> haveSameHashesSmall = createAdversarialInput(10, smallCounter);