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

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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines