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

Comparing jsr166/src/test/tck/AtomicLongArrayTest.java (file contents):
Revision 1.25 by jsr166, Wed Aug 10 07:14:48 2011 UTC vs.
Revision 1.26 by jsr166, Thu May 30 03:28:55 2013 UTC

# Line 322 | Line 322 | public class AtomicLongArrayTest extends
322          for (int i = 0; i < SIZE; i++)
323              x.set(i, -i);
324          AtomicLongArray y = serialClone(x);
325 <        assertTrue(x != y);
325 >        assertNotSame(x, y);
326          assertEquals(x.length(), y.length());
327          for (int i = 0; i < SIZE; i++) {
328              assertEquals(x.get(i), y.get(i));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines