Skip to content

Commit

Permalink
randomSet does not handle 101 elements
Browse files Browse the repository at this point in the history
  • Loading branch information
masseyke committed Dec 18, 2024
1 parent 2538b80 commit 9947013
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private List<String> randomList(int minSize) {
}

private Set<String> randomSet(int minSize) {
return randomSet(minSize, 100, () -> randomAlphaOfLength(50));
return randomSet(minSize, 50, () -> randomAlphaOfLength(50));
}

private List<Tuple<String, Exception>> randomErrorList() {
Expand Down

0 comments on commit 9947013

Please sign in to comment.