mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-20 00:47:20 +00:00
Fix formatting
This commit is contained in:
parent
f926a300a1
commit
ee7b3a7d34
@ -1375,6 +1375,7 @@ public class CSVParserTest {
|
|||||||
|
|
||||||
parser.close();
|
parser.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
// CSV with no header comments
|
// CSV with no header comments
|
||||||
static private final String CSV_INPUT_NO_COMMENT = "A,B"+CRLF+"1,2"+CRLF;
|
static private final String CSV_INPUT_NO_COMMENT = "A,B"+CRLF+"1,2"+CRLF;
|
||||||
// CSV with a header comment
|
// CSV with a header comment
|
||||||
@ -1399,7 +1400,6 @@ public class CSVParserTest {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetHeaderComment_NoComment1() throws IOException {
|
public void testGetHeaderComment_NoComment1() throws IOException {
|
||||||
|
|
||||||
try (CSVParser parser = CSVParser.parse(CSV_INPUT_NO_COMMENT, FORMAT_AUTO_HEADER)) {
|
try (CSVParser parser = CSVParser.parse(CSV_INPUT_NO_COMMENT, FORMAT_AUTO_HEADER)) {
|
||||||
parser.getRecords();
|
parser.getRecords();
|
||||||
// Expect no header comment
|
// Expect no header comment
|
||||||
|
Loading…
x
Reference in New Issue
Block a user