--- jsr166/src/test/tck/AtomicReferenceFieldUpdaterTest.java 2011/06/10 20:01:21 1.24 +++ jsr166/src/test/tck/AtomicReferenceFieldUpdaterTest.java 2011/06/10 20:17:11 1.25 @@ -136,7 +136,7 @@ public class AtomicReferenceFieldUpdater assertTrue(a.compareAndSet(this, one, two)); t.join(LONG_DELAY_MS); assertFalse(t.isAlive()); - assertSame(a.get(this), three); + assertSame(three, a.get(this)); } /**