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

Comparing jsr166/src/test/tck/AbstractQueueTest.java (file contents):
Revision 1.15 by jsr166, Mon May 29 22:44:26 2017 UTC vs.
Revision 1.17 by jsr166, Wed Jan 10 16:46:21 2018 UTC

# Line 53 | Line 53 | public class AbstractQueueTest extends J
53      }
54  
55      /**
56 <     * add throws IllegalStateException true if offer fails
56 >     * add throws IllegalStateException if offer fails
57       */
58      public void testAddF() {
59          Fail q = new Fail();
# Line 79 | Line 79 | public class AbstractQueueTest extends J
79       */
80      public void testRemoveS() {
81          Succeed q = new Succeed();
82 <        q.remove();
82 >        assertSame(one, q.remove());
83      }
84  
85      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines