BAEL-7: Fix formatting (#874)
This commit is contained in:
parent
20acf42fca
commit
34e5a6475f
@ -74,7 +74,8 @@ public class JoinSplitCollectionsUnitTest {
|
||||
users.put(2, "Paul Smith");
|
||||
users.put(3, "Susan Anderson");
|
||||
|
||||
String result = users.entrySet().stream().map(entry -> entry.getKey() + " = " + entry.getValue())
|
||||
String result = users.entrySet().stream()
|
||||
.map(entry -> entry.getKey() + " = " + entry.getValue())
|
||||
.collect(Collectors.joining(", "));
|
||||
|
||||
assertEquals(result, "1 = John Doe, 2 = Paul Smith, 3 = Susan Anderson");
|
||||
|
Loading…
x
Reference in New Issue
Block a user