We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5f756 commit b797c6dCopy full SHA for b797c6d
1 file changed
src/test/java/org/apache/commons/csv/CSVParserTest.java
@@ -1393,11 +1393,11 @@ public void testParsingPrintedEmptyFirstColumn(final CSVFormat.Predefined format
1393
try (CSVPrinter printer = new CSVPrinter(buf, format.getFormat())) {
1394
printer.printRecords(Stream.of(lines));
1395
}
1396
- try (CSVParser parser = new CSVParser(new StringReader(buf.toString()), format.getFormat())) {
+ try (CSVParser csvRecords = new CSVParser(new StringReader(buf.toString()), format.getFormat())) {
1397
for (final String[] line : lines) {
1398
- assertArrayEquals(line, parser.nextRecord().values());
+ assertArrayEquals(line, csvRecords.nextRecord().values());
1399
1400
- assertNull(parser.nextRecord());
+ assertNull(csvRecords.nextRecord());
1401
1402
1403
0 commit comments