BAEL-583: Corrected naming for parallel stream test case

This commit is contained in:
Stephen Braimah 2017-01-19 09:53:56 +00:00
parent ff29b0ca05
commit 03902d2507
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public class Java8FindAnyFindFirstTest {
}
@Test
public void createParallelStream_whenFindAnyResultIsNotFirst_ThenCorrect() throws Exception {
public void createParallelStream_whenFindAnyResultIsPresent_ThenCorrect() throws Exception {
List<Integer> list = Arrays.asList(1,2,3,4,5);
Optional<Integer> result = list
.stream()