Skip to content

Commit a8cec38

Browse files
committed
Restore max pool size limit in test
1 parent afbb9f6 commit a8cec38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform-tests/src/test/java/org/junit/platform/engine/support/hierarchical/ParallelExecutionIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ void canRunTestsIsolatedFromEachOtherAcrossClassesWithOtherResourceLocks() {
267267
void runsIsolatedTestsLastToMaximizeParallelism() {
268268
var configParams = Map.of( //
269269
DEFAULT_PARALLEL_EXECUTION_MODE, "concurrent", //
270-
PARALLEL_CONFIG_FIXED_MAX_POOL_SIZE_PROPERTY_NAME, "4" //
270+
PARALLEL_CONFIG_FIXED_MAX_POOL_SIZE_PROPERTY_NAME, "3" //
271271
);
272272
Class<?>[] testClasses = { IsolatedTestCase.class, SuccessfulParallelTestCase.class };
273273
var events = executeWithFixedParallelism(3, configParams, testClasses) //

0 commit comments

Comments
 (0)