Skip to content

Commit

Permalink
Fix IT
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Dec 10, 2022
1 parent 738df34 commit 1a16168
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ protected void assertJVM(TestClientOutput o, Properties props) {
}

String mojoStartedLogMessage(Properties props, String pluginArtifactId, String mojo, String executionId) {
return "\\Q--- " + pluginArtifactId + ":" + props.getProperty(pluginArtifactId + ".version") + ":" + mojo + " ("
return "\\Q--- "
+ pluginArtifactId.replace("maven-", "").replace("-plugin", "")
+ ":" + props.getProperty(pluginArtifactId + ".version") + ":" + mojo + " ("
+ executionId + ") @ single-module ---\\E";
}
}

0 comments on commit 1a16168

Please sign in to comment.