File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ public void testEqualsWithNull() {
390390
391391 final CSVFormat cSVFormat = CSVFormat .POSTGRESQL_TEXT ;
392392
393- assertEquals ('\" ' , (char )cSVFormat .getEscapeCharacter ());
393+ assertEquals ('\\ ' , (char )cSVFormat .getEscapeCharacter ());
394394 assertFalse (cSVFormat .getIgnoreSurroundingSpaces ());
395395
396396 assertFalse (cSVFormat .getTrailingDelimiter ());
@@ -417,7 +417,7 @@ public void testEqualsWithNull() {
417417 assertEquals ('\"' , (char )cSVFormat .getQuoteCharacter ());
418418 assertTrue (cSVFormat .isNullStringSet ());
419419
420- assertEquals ('\" ' , (char )cSVFormat .getEscapeCharacter ());
420+ assertEquals ('\\ ' , (char )cSVFormat .getEscapeCharacter ());
421421 assertFalse (cSVFormat .getIgnoreSurroundingSpaces ());
422422
423423 assertFalse (cSVFormat .getTrailingDelimiter ());
You can’t perform that action at this time.
0 commit comments