Skip to content

Commit eb472cb

Browse files
committed
Better lvar name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397998 13f79535-47bb-0310-9956-ffa450edef68
1 parent a50d473 commit eb472cb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ public void testEmptyFile() throws Exception {
238238
@Test
239239
public void testCSV57() throws Exception {
240240
final CSVParser parser = new CSVParser("", CSVFormat.DEFAULT);
241-
final List<CSVRecord> l = parser.getRecords();
242-
assertNotNull(l);
243-
assertEquals(0, l.size());
241+
final List<CSVRecord> list = parser.getRecords();
242+
assertNotNull(list);
243+
assertEquals(0, list.size());
244244
}
245245

246246
@Test

0 commit comments

Comments
 (0)