Skip to content

Commit e96eb8d

Browse files
committed
Order elements
1 parent 1112dfd commit e96eb8d

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/WorkerThreadPoolHierarchicalTestExecutorServiceTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ void stealsSiblingDynamicChildrenOnly() throws Exception {
736736

737737
service.submit(root).get();
738738

739-
assertThat(Stream.of(root, child1, child3, child2, leaf2a)) //
739+
assertThat(Stream.of(root, child1, child2, leaf2a, child3)) //
740740
.allSatisfy(TestTaskStub::assertExecutedSuccessfully);
741741

742742
assertThat(child2.executionThread).isNotEqualTo(child1.executionThread).isNotEqualTo(child3.executionThread);

0 commit comments

Comments
 (0)