This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new 32e68915 No _ in test method names needed
32e68915 is described below

commit 32e68915aa1c0c2ab9637d55950a740911897848
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 17 09:09:55 2023 -0400

    No _ in test method names needed
---
 src/test/java/org/apache/commons/csv/CSVParserTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test/java/org/apache/commons/csv/CSVParserTest.java 
b/src/test/java/org/apache/commons/csv/CSVParserTest.java
index 1ccac64b..e0d0c077 100644
--- a/src/test/java/org/apache/commons/csv/CSVParserTest.java
+++ b/src/test/java/org/apache/commons/csv/CSVParserTest.java
@@ -220,7 +220,7 @@ public class CSVParserTest {
     }
 
     @Test
-    public void testBOMInputStream_ParserWithInputStream() throws IOException {
+    public void testBOMInputStreamParserWithInputStream() throws IOException {
         try (final BOMInputStream inputStream = 
createBOMInputStream("org/apache/commons/csv/CSVFileParser/bom.csv");
             final CSVParser parser = CSVParser.parse(inputStream, UTF_8, 
CSVFormat.EXCEL.withHeader())) {
             parser.forEach(record -> assertNotNull(record.get("Date")));
@@ -228,7 +228,7 @@ public class CSVParserTest {
     }
 
     @Test
-    public void testBOMInputStream_ParserWithReader() throws IOException {
+    public void testBOMInputStreamParserWithReader() throws IOException {
         try (final Reader reader = new 
InputStreamReader(createBOMInputStream("org/apache/commons/csv/CSVFileParser/bom.csv"),
 UTF_8_NAME);
             final CSVParser parser = new CSVParser(reader, 
CSVFormat.EXCEL.withHeader())) {
             parser.forEach(record -> assertNotNull(record.get("Date")));
@@ -236,7 +236,7 @@ public class CSVParserTest {
     }
 
     @Test
-    public void testBOMInputStream_parseWithReader() throws IOException {
+    public void testBOMInputStreamParseWithReader() throws IOException {
         try (final Reader reader = new 
InputStreamReader(createBOMInputStream("org/apache/commons/csv/CSVFileParser/bom.csv"),
 UTF_8_NAME);
             final CSVParser parser = CSVParser.parse(reader, 
CSVFormat.EXCEL.withHeader())) {
             parser.forEach(record -> assertNotNull(record.get("Date")));

Reply via email to