Skip to content

Commit

Permalink
Merge pull request #20095 from gastaldi/flaky_fix
Browse files Browse the repository at this point in the history
Fix test references to the gone vertx-web extension
  • Loading branch information
gastaldi authored Sep 13, 2021
2 parents 8926d29 + 0a1de74 commit 603ef9f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void testCreateAppOverrides() throws Exception {
"--package-name=custom.pkg",
"--output-directory=" + nested,
"--app-config=" + String.join(",", configs),
"-x vertx-web",
"-x reactive-routes",
"silly:my-project:0.1.0");

Assertions.assertEquals(CommandLine.ExitCode.OK, result.exitCode, "Expected OK return code." + result);
Expand All @@ -91,7 +91,7 @@ public void testCreateAppOverrides() throws Exception {

String source = CliDriver.readFileAsString(project, javaMain);
Assertions.assertTrue(source.contains("quarkus-reactive-routes"),
"Generated source should reference vertx-web. Found:\n" + source);
"Generated source should reference quarkus-reactive-routes. Found:\n" + source);

result = CliDriver.invokeValidateDryRunBuild(project);

Expand Down

0 comments on commit 603ef9f

Please sign in to comment.