Skip to content

Commit

Permalink
test: use correct test input as stated by testname (FasterXML#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlahn committed Nov 20, 2023
1 parent 09b9182 commit 783cc72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void testCsvWithTrailingBlankLineSkipBlankLinesFeatureDisabled() throws E
public void testCsvWithTrailingBlankLineSkipBlankLinesFeatureEnabled() throws Exception {
String[][] rows = mapperForCsvAsArray()
.with(CsvParser.Feature.SKIP_EMPTY_LINES)
.readValue(CSV_WITH_FIRST_BLANK_LINE);
.readValue(CSV_WITH_TRAILING_BLANK_LINES);
// blank lines are skipped
assertArrayEquals(expected(
row("1", "xyz"),
Expand Down

0 comments on commit 783cc72

Please sign in to comment.