Skip to content

Commit

Permalink
[JUnit47ParallelIT.forcedShutdownVerifyingLogs] fixed assertion regex
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibor17 committed Feb 1, 2022
1 parent 627139e commit 2880b08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ public void forcedShutdownVerifyingLogs()
if ( line.contains( "These tests are incomplete:" ) )
{
assertThat( it.hasNext() ).isTrue();
assertThat( it.next() ).matches( "^.*\\s+surefireparallel\\.Waiting(\\d{1,1})Test$" );
assertThat( it.next() ).matches( "^.*surefireparallel\\.Waiting(\\d{1,1})Test$" );
}
}
}
Expand Down

0 comments on commit 2880b08

Please sign in to comment.