Skip to content

Commit c6f0c73

Browse files
authored
Merge pull request #1562 from franklx/2.x
use System.lineSeparator()
2 parents ce54bb7 + a8da313 commit c6f0c73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/jooby-apt/src/test/java/io/jooby/apt/MvcModuleCompilerRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private MvcModuleCompilerRunner module(boolean debug, SneakyThrows.Consumer<Joob
6969
add(c.getName() + "$Module");
7070
}
7171
}};
72-
assertEquals(String.join("\n", clsLst), new String(Files.readAllBytes(services), StandardCharsets.UTF_8).trim());
72+
assertEquals(String.join(System.lineSeparator(), clsLst), new String(Files.readAllBytes(services), StandardCharsets.UTF_8).trim());
7373

7474
consumer.accept(application);
7575
return this;

0 commit comments

Comments
 (0)