Skip to content

Commit

Permalink
[test] fix Steam test case mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
VampireAchao committed May 30, 2023
1 parent fa4f6cf commit a8e41a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void testOf() {
Assertions.assertEquals(3, Steam.of(asList(1, 2, 3), true).count());
Assertions.assertEquals(3, Steam.of(1, 2, 3).count());
Assertions.assertEquals(3, Steam.of(Stream.builder().add(1).add(2).add(3).build()).count());
Assertions.assertEquals(3, Steam.of(Maps.of()).count());
Assertions.assertEquals(0, Steam.of(Maps.of()).count());
}

@Test
Expand Down

0 comments on commit a8e41a0

Please sign in to comment.