We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32e6891 commit 8d74818Copy full SHA for 8d74818
1 file changed
src/test/java/org/apache/commons/csv/issues/JiraCsv290Test.java
@@ -57,9 +57,9 @@
57
//
58
public class JiraCsv290Test {
59
60
- private void testHelper(final String filename, final CSVFormat format) throws Exception {
+ private void testHelper(final String fileName, final CSVFormat format) throws Exception {
61
List<List<String>> content = new ArrayList<>();
62
- try (CSVParser csvParser = CSVParser.parse(new InputStreamReader(this.getClass().getResourceAsStream("/org/apache/commons/csv/CSV-290/" + filename)),
+ try (CSVParser csvParser = CSVParser.parse(new InputStreamReader(this.getClass().getResourceAsStream("/org/apache/commons/csv/CSV-290/" + fileName)),
63
format)) {
64
content = csvParser.stream().collect(Collectors.mapping(CSVRecord::toList, Collectors.toList()));
65
}
0 commit comments