Skip to content

Commit

Permalink
GH-5130 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
hmottestad committed Nov 21, 2024
1 parent fa55005 commit ae2c89f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ private Set<String> getRelevantLog(int expectedNumberOfItems) {
.map(String::trim)
.collect(Collectors.toSet());
} while (relevantLog.size() < expectedNumberOfItems);
assert relevantLog.size() == expectedNumberOfItems;
return relevantLog;
}

Expand All @@ -105,7 +106,7 @@ public void testComplexPath() throws IOException {
}
}

Set<String> relevantLog = getRelevantLog(4).stream()
Set<String> relevantLog = getRelevantLog(5).stream()
.sorted()
.collect(Collectors.toCollection(LinkedHashSet::new));

Expand Down

0 comments on commit ae2c89f

Please sign in to comment.