diff --git a/src/test/java/tech/jhipster/lite/generator/server/springboot/database/mysql/application/MySQLApplicationServiceIT.java b/src/test/java/tech/jhipster/lite/generator/server/springboot/database/mysql/application/MySQLApplicationServiceIT.java index a2d91928201..c9376e31760 100644 --- a/src/test/java/tech/jhipster/lite/generator/server/springboot/database/mysql/application/MySQLApplicationServiceIT.java +++ b/src/test/java/tech/jhipster/lite/generator/server/springboot/database/mysql/application/MySQLApplicationServiceIT.java @@ -194,9 +194,9 @@ private void assertLoggerInConfig(Project project) { project, getPath(MAIN_RESOURCES, LOGGING_CONFIGURATION), List.of( - "", - "", - "" + "", + "", + "" ) ); @@ -204,11 +204,11 @@ private void assertLoggerInConfig(Project project) { project, getPath(TEST_RESOURCES, LOGGING_TEST_CONFIGURATION), List.of( - "", - "", - "", - "", - "" + "", + "", + "", + "", + "" ) ); } diff --git a/src/test/java/tech/jhipster/lite/generator/server/springboot/database/postgresql/application/PostgresqlApplicationServiceIT.java b/src/test/java/tech/jhipster/lite/generator/server/springboot/database/postgresql/application/PostgresqlApplicationServiceIT.java index 3cc3ec5b676..dbc41f3b9d8 100644 --- a/src/test/java/tech/jhipster/lite/generator/server/springboot/database/postgresql/application/PostgresqlApplicationServiceIT.java +++ b/src/test/java/tech/jhipster/lite/generator/server/springboot/database/postgresql/application/PostgresqlApplicationServiceIT.java @@ -210,10 +210,10 @@ private void assertLoggerInConfig(Project project) { project, getPath(MAIN_RESOURCES, LOGGING_CONFIGURATION), List.of( - "", - "", - "", - "" + "", + "", + "", + "" ) ); @@ -221,12 +221,12 @@ private void assertLoggerInConfig(Project project) { project, getPath(TEST_RESOURCES, LOGGING_TEST_CONFIGURATION), List.of( - "", - "", - "", - "", - "", - "" + "", + "", + "", + "", + "", + "" ) ); } diff --git a/src/test/java/tech/jhipster/lite/generator/server/springboot/dbmigration/liquibase/application/LiquibaseApplicationServiceIT.java b/src/test/java/tech/jhipster/lite/generator/server/springboot/dbmigration/liquibase/application/LiquibaseApplicationServiceIT.java index df7b0f97022..01c56bd19e9 100644 --- a/src/test/java/tech/jhipster/lite/generator/server/springboot/dbmigration/liquibase/application/LiquibaseApplicationServiceIT.java +++ b/src/test/java/tech/jhipster/lite/generator/server/springboot/dbmigration/liquibase/application/LiquibaseApplicationServiceIT.java @@ -154,16 +154,16 @@ private void assertLoggerInConfig(Project project) { assertFileContent( project, getPath(MAIN_RESOURCES, LOGGING_CONFIGURATION), - List.of("", "") + List.of("", "") ); assertFileContent( project, getPath(TEST_RESOURCES, LOGGING_TEST_CONFIGURATION), List.of( - "", - "", - "" + "", + "", + "" ) ); } diff --git a/src/test/java/tech/jhipster/lite/generator/server/springboot/logging/application/SpringBootLoggingApplicationServiceIT.java b/src/test/java/tech/jhipster/lite/generator/server/springboot/logging/application/SpringBootLoggingApplicationServiceIT.java index 8ccd0b113e6..33a8d507d2f 100644 --- a/src/test/java/tech/jhipster/lite/generator/server/springboot/logging/application/SpringBootLoggingApplicationServiceIT.java +++ b/src/test/java/tech/jhipster/lite/generator/server/springboot/logging/application/SpringBootLoggingApplicationServiceIT.java @@ -37,7 +37,7 @@ void shouldAddLoggerWithLevel() { service.addLogger(project, "tech.jhipster.web", Level.DEBUG); String applicationProperties = getPath(MAIN_RESOURCES, "logback-spring.xml"); - assertFileContent(project, applicationProperties, ""); + assertFileContent(project, applicationProperties, ""); assertFileContent(project, applicationProperties, ""); } } @@ -60,7 +60,7 @@ void shouldAddLoggerWithLevel() { service.addLoggerTest(project, "tech.jhipster.web", Level.DEBUG); String applicationProperties = getPath(TEST_RESOURCES, "logback.xml"); - assertFileContent(project, applicationProperties, ""); + assertFileContent(project, applicationProperties, ""); assertFileContent(project, applicationProperties, ""); } } diff --git a/src/test/java/tech/jhipster/lite/generator/server/springboot/mvc/web/application/SpringBootMvcApplicationServiceIT.java b/src/test/java/tech/jhipster/lite/generator/server/springboot/mvc/web/application/SpringBootMvcApplicationServiceIT.java index cf5d8803a3d..ddc449f84f6 100644 --- a/src/test/java/tech/jhipster/lite/generator/server/springboot/mvc/web/application/SpringBootMvcApplicationServiceIT.java +++ b/src/test/java/tech/jhipster/lite/generator/server/springboot/mvc/web/application/SpringBootMvcApplicationServiceIT.java @@ -43,7 +43,7 @@ void shouldInit() { assertFileContent(project, getPath(MAIN_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=8080"); assertFileContent(project, getPath(TEST_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=0"); - assertLoggingConfiguration(project, ""); + assertLoggingConfiguration(project, ""); assertTestUtil(project); assertExceptionHandler(project); @@ -62,7 +62,7 @@ void shouldAddSpringBootMvc() { assertFileContent(project, getPath(MAIN_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=8080"); assertFileContent(project, getPath(TEST_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=0"); - assertLoggingConfiguration(project, ""); + assertLoggingConfiguration(project, ""); assertTestUtil(project); assertExceptionHandler(project); @@ -82,7 +82,7 @@ void shouldAddSpringBootMvcWithServerPort() { assertFileContent(project, getPath(MAIN_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=7419"); assertFileContent(project, getPath(TEST_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=0"); - assertLoggingConfiguration(project, ""); + assertLoggingConfiguration(project, ""); assertTestUtil(project); assertExceptionHandler(project); @@ -102,7 +102,7 @@ void shouldAddSpringBootMvcWithInvalidServerPort() { assertFileContent(project, getPath(MAIN_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=8080"); assertFileContent(project, getPath(TEST_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=0"); - assertLoggingConfiguration(project, ""); + assertLoggingConfiguration(project, ""); assertTestUtil(project); assertExceptionHandler(project); @@ -121,7 +121,7 @@ void shouldAddSpringBootUndertow() { assertFileContent(project, getPath(MAIN_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=8080"); assertFileContent(project, getPath(TEST_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=0"); - assertLoggingConfiguration(project, ""); + assertLoggingConfiguration(project, ""); assertTestUtil(project); assertExceptionHandler(project); @@ -141,7 +141,7 @@ void shouldAddSpringBootUndertowWithServerPort() { assertFileContent(project, getPath(MAIN_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=1664"); assertFileContent(project, getPath(TEST_RESOURCES, "config", APPLICATION_PROPERTIES), "server.port=0"); - assertLoggingConfiguration(project, ""); + assertLoggingConfiguration(project, ""); assertTestUtil(project); assertExceptionHandler(project);