Skip to content

Commit 8d74818

Browse files
committed
Camel-case parameter names
1 parent 32e6891 commit 8d74818

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/csv/issues/JiraCsv290Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
//
5858
public class JiraCsv290Test {
5959

60-
private void testHelper(final String filename, final CSVFormat format) throws Exception {
60+
private void testHelper(final String fileName, final CSVFormat format) throws Exception {
6161
List<List<String>> content = new ArrayList<>();
62-
try (CSVParser csvParser = CSVParser.parse(new InputStreamReader(this.getClass().getResourceAsStream("/org/apache/commons/csv/CSV-290/" + filename)),
62+
try (CSVParser csvParser = CSVParser.parse(new InputStreamReader(this.getClass().getResourceAsStream("/org/apache/commons/csv/CSV-290/" + fileName)),
6363
format)) {
6464
content = csvParser.stream().collect(Collectors.mapping(CSVRecord::toList, Collectors.toList()));
6565
}

0 commit comments

Comments
 (0)