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

Comparing jsr166/src/test/tck/AtomicReferenceFieldUpdaterTest.java (file contents):
Revision 1.8 by dl, Tue Jan 20 20:20:56 2004 UTC vs.
Revision 1.9 by dl, Tue Dec 28 16:15:59 2004 UTC

# Line 76 | Line 76 | public class AtomicReferenceFieldUpdater
76          assertEquals(one,a.get(this));
77          a.set(this,two);
78          assertEquals(two,a.get(this));
79 <        a.set(this,-3);
80 <        assertEquals(-3,a.get(this));
79 >        a.set(this,m3);
80 >        assertEquals(m3,a.get(this));
81          
82      }
83      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines