Skip to content

Commit

Permalink
Fix order of files in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Mar 8, 2024
1 parent a3ae6af commit 28a9465
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void shouldCreateSingleReport() {
}

private void assertTestClasses(final List<ClassNode> classNodes) {
assertThat(classNodes).extracting(ClassNode::getName).containsExactly(
assertThat(classNodes).extracting(ClassNode::getName).containsExactlyInAnyOrder(
"Aufgabe3Test",
"edu.hm.hafner.grading.AutoGradingActionTest",
"edu.hm.hafner.grading.ReportFinderTest");
Expand Down

0 comments on commit 28a9465

Please sign in to comment.