Skip to content

Commit d8f3237

Browse files
committed
add space
1 parent 5a4b985 commit d8f3237

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/csv/CSVRecordTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ public void testGetWithEnum() {
305305
@Test
306306
public void testCSVRecordNULLValues() throws IOException {
307307
final CSVParser parser = CSVParser.parse("A,B\r\nONE,TWO", CSVFormat.DEFAULT.withHeader());
308-
final CSVRecord csvRecord = new CSVRecord(parser, null,null, 0L, 0L);
308+
final CSVRecord csvRecord = new CSVRecord(parser, null, null, 0L, 0L);
309309
assertEquals(0, csvRecord.size());
310310
assertThrows(IllegalArgumentException.class, () -> csvRecord.get("B"));
311311
}

0 commit comments

Comments
 (0)