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

Comparing jsr166/src/test/tck/AtomicReferenceArrayTest.java (file contents):
Revision 1.27 by jsr166, Mon Apr 1 21:03:58 2013 UTC vs.
Revision 1.28 by jsr166, Thu May 30 03:28:55 2013 UTC

# Line 199 | Line 199 | public class AtomicReferenceArrayTest ex
199              x.set(i, new Integer(-i));
200          }
201          AtomicReferenceArray y = serialClone(x);
202 <        assertTrue(x != y);
202 >        assertNotSame(x, y);
203          assertEquals(x.length(), y.length());
204          for (int i = 0; i < SIZE; i++) {
205              assertEquals(x.get(i), y.get(i));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines