Skip to content

Commit

Permalink
test: run perf
Browse files Browse the repository at this point in the history
  • Loading branch information
karenc-bq committed Oct 23, 2024
1 parent 0b99288 commit 6bdbdca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public Stream<TestTemplateInvocationContext> provideTestTemplateInvocationContex
continue;
}

final List<Integer> instancesToTest = numInstances != null ? List.of(numInstances) : Arrays.asList(1, 2, 3, 5);
final List<Integer> instancesToTest = numInstances != null ? Arrays.asList(numInstances) : Arrays.asList(1, 2, 3, 5);
for (int numOfInstances : instancesToTest) {
if (instances == DatabaseInstances.SINGLE_INSTANCE && numOfInstances > 1) {
continue;
Expand Down

0 comments on commit 6bdbdca

Please sign in to comment.