Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nik9000 committed Jan 29, 2025
1 parent c7ff46b commit 788255f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ public void testLookupExplosion() throws IOException {

public void testLookupExplosionManyMatches() throws IOException {
assertCircuitBreaks(() -> {
Map<?, ?> result = lookupExplosion(900, 10000);
Map<?, ?> result = lookupExplosion(1500, 10000);
logger.error("should have failed but got {}", result);
});
}
Expand All @@ -656,7 +656,7 @@ public void testLookupExplosionNoFetchManyMatches() throws IOException {
}

public void testLookupExplosionBigString() throws IOException {
int sensorDataCount = 250;
int sensorDataCount = 150;
int lookupEntries = 1;
Map<?, ?> map = lookupExplosionBigString(sensorDataCount, lookupEntries);
assertMap(map, matchesMap().extraOk().entry("values", List.of(List.of(sensorDataCount * lookupEntries))));
Expand Down

0 comments on commit 788255f

Please sign in to comment.