ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentSkipListSubSetTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ConcurrentSkipListSubSetTest.java (file contents):
Revision 1.23 by jsr166, Tue Feb 21 02:04:17 2012 UTC vs.
Revision 1.24 by jsr166, Thu May 30 03:28:55 2013 UTC

# Line 494 | Line 494 | public class ConcurrentSkipListSubSetTes
494          NavigableSet x = populatedSet(SIZE);
495          NavigableSet y = serialClone(x);
496  
497 <        assertTrue(x != y);
497 >        assertNotSame(y, x);
498          assertEquals(x.size(), y.size());
499          assertEquals(x, y);
500          assertEquals(y, x);
# Line 994 | Line 994 | public class ConcurrentSkipListSubSetTes
994          NavigableSet x = dset5();
995          NavigableSet y = serialClone(x);
996  
997 <        assertTrue(x != y);
997 >        assertNotSame(y, x);
998          assertEquals(x.size(), y.size());
999          assertEquals(x, y);
1000          assertEquals(y, x);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines