Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
cristian-com committed Apr 21, 2021
1 parent b20dbfa commit 9b798a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devtools/cli/src/test/java/io/quarkus/cli/CliTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,10 @@ public void testCreateWithAppConfig() throws Exception {
List<String> configs = Arrays.asList("custom.app.config1=val1",
"custom.app.config2=val2", "lib.config=val3");

execute("create --app-config=", StringUtils.join(configs, ","));
execute("create", "--app-config=" + StringUtils.join(configs, ","));

Assertions.assertEquals(0, exitCode);
Assertions.assertTrue(screen.contains("Project my-rest-project created"));
Assertions.assertEquals(CommandLine.ExitCode.OK, exitCode);
Assertions.assertTrue(screen.contains("Project my-project-with-configs created"));

Assertions.assertTrue(project.resolve("src/main/resources/application.properties").toFile().exists());
String propertiesFile = readString(project.resolve("src/main/resources/application.properties"));
Expand Down

0 comments on commit 9b798a5

Please sign in to comment.