Skip to content

Commit

Permalink
Increase loop iteration count in EncoderTest
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperxpro authored Nov 27, 2024
1 parent 3ec114d commit fa618a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void ensureDictionaryDataRemainsAfterGC() throws IOException, InterruptedExcepti

// Create gc pressure to trigger potential collection of dictionary data
ArrayList<Integer> hashes = new ArrayList<>();
for (int i = 0; i < 1000; i++) {
for (int i = 0; i < 1_000_000; i++) {
String obj = String.valueOf(Math.random());
hashes.add(obj.hashCode());
}
Expand Down

0 comments on commit fa618a8

Please sign in to comment.