Skip to content

Commit 8966e09

Browse files
committed
include correction to original test case that I somehow missed in my rebase for merging this pull request
1 parent 93a9aff commit 8966e09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ public void testPrintWithQuotes() throws IOException {
971971
final Appendable out = new StringBuilder();
972972
final CSVFormat format = CSVFormat.RFC4180.withDelimiter(',').withQuote('"').withEscape('?').withQuoteMode(QuoteMode.NON_NUMERIC);
973973
format.print(in, out, true);
974-
assertEquals("\"\"\"\"a,b,c\r\nx,y,z\"", out.toString());
974+
assertEquals("\"\"\"a,b,c\r\nx,y,z\"", out.toString());
975975
}
976976

977977
@Test

0 commit comments

Comments
 (0)