Skip to content

Commit

Permalink
recursion code change
Browse files Browse the repository at this point in the history
  • Loading branch information
matcdac committed Nov 26, 2023
1 parent 88e9eb8 commit 59827b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private void verifyAllChildDescriptionsFired(Description description,
System.out.println("verified start " + displayName);
}
for (Description child : description.getChildren()) {
verifyAllChildDescriptionsFired(child, false);
verifyAllChildDescriptionsFired(child, true);
}
if (!onlyChildren && considerStepForVerification(description)) {
verify(notifier).fireTestFinished(description);
Expand Down

0 comments on commit 59827b7

Please sign in to comment.