We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 598f726 commit b26b0a2Copy full SHA for b26b0a2
src/test/java/org/seasar/doma/jdbc/CallerCommenterTest.java
@@ -27,7 +27,7 @@ public void testComment() throws Exception {
27
CommentContext context = new CommentContext("class", "method",
28
new MockConfig(), null);
29
String actual = commenter.comment("select * from emp", context);
30
- assertEquals("/** class.method */\nselect * from emp", actual);
+ assertEquals("/** class.method */" + System.lineSeparator() + "select * from emp", actual);
31
}
32
33
0 commit comments