--- jsr166/src/test/tck/SubmissionPublisherTest.java 2015/09/07 20:28:47 1.3 +++ jsr166/src/test/tck/SubmissionPublisherTest.java 2015/09/07 20:33:41 1.4 @@ -804,11 +804,11 @@ public class SubmissionPublisherTest ext /** - * TimedOffer to a publisher with no subscribers returns lag 0 + * Timed offer to a publisher with no subscribers returns lag 0 */ public void testEmptyTimedOffer() { SubmissionPublisher p = basicPublisher(); - assertEquals(p.offer(1, null), 0); + assertEquals(0, p.offer(1, LONG_DELAY_MS, MILLISECONDS, null)); } /**