Skip to content

Commit e8de37a

Browse files
committed
Merge pull request #59 from OdaShinsuke/windowserror
Windows環境でテストが失敗する問題を修正
2 parents 598f726 + b26b0a2 commit e8de37a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/seasar/doma/jdbc/CallerCommenterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void testComment() throws Exception {
2727
CommentContext context = new CommentContext("class", "method",
2828
new MockConfig(), null);
2929
String actual = commenter.comment("select * from emp", context);
30-
assertEquals("/** class.method */\nselect * from emp", actual);
30+
assertEquals("/** class.method */" + System.lineSeparator() + "select * from emp", actual);
3131
}
3232

3333
}

0 commit comments

Comments
 (0)