Skip to content

Commit

Permalink
Windows bug fixed, ignore line ending
Browse files Browse the repository at this point in the history
  • Loading branch information
verhas committed Dec 29, 2023
1 parent 9a47a4b commit f34c067
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void testJdslSample() throws Exception {
try( final var is = resource.openStream() ){
input = new String(is.readAllBytes(), StandardCharsets.UTF_8);
}
TestThat.theInput(input).atPosition(resource.toURI().toURL().getFile(),1,1)
TestThat.theInput(input).atPosition(resource.toURI().toURL().getFile(),1,1).ignoreLineEnding()
.results("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n" +
"<project>\n" +
" <modelVersion>4.0.0</modelVersion>\n" +
Expand Down

0 comments on commit f34c067

Please sign in to comment.