Skip to content

Commit c437376

Browse files
authored
sortByLine mmap output - fixes 4 flaky unit tests (#4975)
1 parent 8c72ef0 commit c437376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/io/vertx/core/http/headers/HeadersTestBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void testAddAll2() {
6969
HashMap<String, String> map = new HashMap<>();
7070
map.put("a", "b");
7171
map.put("c", "d");
72-
assertEquals("a=b\nc=d\n", mmap.addAll(map).toString());
72+
assertEquals("a=b\nc=d\n", sortByLine(mmap.addAll(map).toString()));
7373
}
7474

7575
@Test

0 commit comments

Comments
 (0)