< prev index next >

test/jdk/java/util/concurrent/tck/Collection8Test.java

Print this page
8203662: remove increment of modCount from ArrayList and Vector replaceAll()
Reviewed-by: martin, psandoz, igerasim, redestad, dholmes, smarks, jrose, plevart

@@ -977,11 +977,11 @@
             assertSame(c.getClass(), serialClone.getClass());
             assertCollectionsEquivalent(c, serialClone);
         } catch (java.io.NotSerializableException acceptable) {}
     }
 
-    public void DISABLED_testReplaceAllIsNotStructuralModification() {
+    public void testReplaceAllIsNotStructuralModification() {
         Collection c = impl.emptyCollection();
         if (!(c instanceof List))
             return;
         List list = (List) c;
         ThreadLocalRandom rnd = ThreadLocalRandom.current();
< prev index next >