Skip to content

Commit

Permalink
Fix IT
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Dec 9, 2022
1 parent 738df34 commit 4e1f894
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,13 @@ void cleanInstall() throws IOException, InterruptedException {
Assertions.assertThat(messages)
.is(new MatchInOrderAmongOthers<>(
"Building single-module",
mojoStartedLogMessage(props, "maven-clean-plugin", "clean", "default-clean"),
mojoStartedLogMessage(props, "maven-resources-plugin", "resources", "default-resources"),
mojoStartedLogMessage(props, "maven-compiler-plugin", "compile", "default-compile"),
mojoStartedLogMessage(
props, "maven-resources-plugin", "testResources", "default-testResources"),
mojoStartedLogMessage(props, "maven-compiler-plugin", "testCompile", "default-testCompile"),
mojoStartedLogMessage(props, "maven-surefire-plugin", "test", "default-test"),
mojoStartedLogMessage(props, "maven-install-plugin", "install", "default-install"),
mojoStartedLogMessage(props, "clean", "clean", "default-clean"),
mojoStartedLogMessage(props, "resources", "resources", "default-resources"),
mojoStartedLogMessage(props, "compiler", "compile", "default-compile"),
mojoStartedLogMessage(props, "resources", "testResources", "default-testResources"),
mojoStartedLogMessage(props, "compiler", "testCompile", "default-testCompile"),
mojoStartedLogMessage(props, "surefire", "test", "default-test"),
mojoStartedLogMessage(props, "install", "install", "default-install"),
"BUILD SUCCESS"));

assertJVM(o, props);
Expand Down

0 comments on commit 4e1f894

Please sign in to comment.