Skip to content

Commit

Permalink
modify
Browse files Browse the repository at this point in the history
Signed-off-by: yunfeiyanggzq <[email protected]>
  • Loading branch information
yunfeiyanggzq committed May 23, 2020
1 parent da6fca2 commit d45f01e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ public class Tuple2Test {
public void testSwap() {
Tuple2<Integer, Integer> tupleOld = new Tuple2(1, 2);
Tuple2<Integer, Integer> tupleNew = tupleOld.swap();
Assert.assertEquals(new Tuple2(2, 1), tupleNew);
Assert.assertEquals("Tuple2{r1=2, r2=1}", tupleNew.toString());
}
}

0 comments on commit d45f01e

Please sign in to comment.