We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f926a30 commit ee7b3a7Copy full SHA for ee7b3a7
1 file changed
src/test/java/org/apache/commons/csv/CSVParserTest.java
@@ -1375,6 +1375,7 @@ private void validateRecordPosition(final String lineSeparator) throws IOExcepti
1375
1376
parser.close();
1377
}
1378
+
1379
// CSV with no header comments
1380
static private final String CSV_INPUT_NO_COMMENT = "A,B"+CRLF+"1,2"+CRLF;
1381
// CSV with a header comment
@@ -1399,7 +1400,6 @@ private void validateRecordPosition(final String lineSeparator) throws IOExcepti
1399
1400
1401
@Test
1402
public void testGetHeaderComment_NoComment1() throws IOException {
-
1403
try (CSVParser parser = CSVParser.parse(CSV_INPUT_NO_COMMENT, FORMAT_AUTO_HEADER)) {
1404
parser.getRecords();
1405
// Expect no header comment
0 commit comments