Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Nov 12, 2024
1 parent 326b8f0 commit 97ec177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/kiss/xml/XMLWriterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private boolean checkXMLFormat(String xml) {
int count = countLeadingSpaces(lines[i]);
lines[i] = "\t".repeat(count / 4).concat(lines[i].trim());
}
xml = String.join(System.lineSeparator(), lines);
xml = String.join("\r\n", lines);

// validate
String formatted = I.xml(xml).toString().trim();
Expand Down

0 comments on commit 97ec177

Please sign in to comment.