Skip to content

Commit

Permalink
fix(JDBCTableWriterFaresV2Test.java): Replaced Windows new line separ…
Browse files Browse the repository at this point in the history
…ator with OS derived reference

Test should now work on Linux
  • Loading branch information
br648 committed Jan 31, 2025
1 parent 7d41e00 commit 62a7ed2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private static Stream<Arguments> createEntityInput() throws IOException {
private static String getEntityFromFile(String fileName) throws IOException {
return TestUtils
.getTestResourceAsString("fares-v2-json-entities/" + fileName)
.replace("\r\n", "")
.replace(System.lineSeparator(), "")
.replace(" ", "")
.replace("\"\"", "null");
}
Expand Down

0 comments on commit 62a7ed2

Please sign in to comment.