BAEL-602 remove unnecessary comment

This commit is contained in:
Tomasz Lelek 2017-02-20 10:13:25 +01:00
parent e35c452ad1
commit 08ced40547
1 changed files with 2 additions and 3 deletions

View File

@ -94,8 +94,8 @@ public class JOOLTest {
); );
assertEquals( assertEquals(
Seq.of(1, 2, 3, 4).partition(i -> i % 2 != 0).map((first, second) -> tuple(first.toList(), second.toList())), Seq.of(1, 2, 3, 4).partition(i -> i > 2).map((first, second) -> tuple(first.toList(), second.toList())),
tuple(Arrays.asList(1, 3), Arrays.asList(2, 4)) tuple(Arrays.asList(3, 4), Arrays.asList(1, 2))
); );
@ -152,7 +152,6 @@ public class JOOLTest {
Arrays.asList(tuple(1, "a"), tuple(2, "b"), tuple(3, "c")) Arrays.asList(tuple(1, "a"), tuple(2, "b"), tuple(3, "c"))
); );
// ("1:a", "2:b", "3:c")
assertEquals( assertEquals(
Seq.of(1, 2, 3).zip(Seq.of("a", "b", "c"), (x, y) -> x + ":" + y).toList(), Seq.of(1, 2, 3).zip(Seq.of("a", "b", "c"), (x, y) -> x + ":" + y).toList(),
Arrays.asList("1:a", "2:b", "3:c") Arrays.asList("1:a", "2:b", "3:c")