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

Comparing jsr166/src/test/tck/CompletableFutureTest.java (file contents):
Revision 1.202 by jsr166, Sat Sep 22 22:23:08 2018 UTC vs.
Revision 1.204 by jsr166, Sun Sep 23 00:52:18 2018 UTC

# Line 551 | Line 551 | public class CompletableFutureTest exten
551          public CompletableFuture<Integer> apply(Integer x) {
552              invoked();
553              value = x;
554 <            CompletableFuture<Integer> f = new CompletableFuture<>();
555 <            assertTrue(f.complete(inc(x)));
556 <            return f;
554 >            return CompletableFuture.completedFuture(inc(x));
555          }
556      }
557  
# Line 4785 | Line 4783 | public class CompletableFutureTest exten
4783       * default-implemented exceptionallyAsync action completes with
4784       * function value on source exception
4785       */
4786 <    public void testDefaulExceptionallyAsync_exceptionalCompletion() {
4786 >    public void testDefaultExceptionallyAsync_exceptionalCompletion() {
4787          for (boolean createIncomplete : new boolean[] { true, false })
4788          for (Integer v1 : new Integer[] { 1, null })
4789      {
# Line 4812 | Line 4810 | public class CompletableFutureTest exten
4810       * throws an exception, it completes exceptionally with that
4811       * exception
4812       */
4813 <    public void testDefaulExceptionallyAsync_exceptionalCompletionActionFailed() {
4813 >    public void testDefaultExceptionallyAsync_exceptionalCompletionActionFailed() {
4814          for (boolean createIncomplete : new boolean[] { true, false })
4815      {
4816          final AtomicInteger a = new AtomicInteger(0);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines