Skip to content

Commit 04cee2b

Browse files
committed
Better error message in test.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1603203 13f79535-47bb-0310-9956-ffa450edef68
1 parent 52a57cb commit 04cee2b

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
@@ -321,7 +321,7 @@ public void testSerialization() throws Exception {
321321
assertEquals("delimiter", CSVFormat.DEFAULT.getDelimiter(), format.getDelimiter());
322322
assertEquals("encapsulator", CSVFormat.DEFAULT.getQuoteChar(), format.getQuoteChar());
323323
assertEquals("comment start", CSVFormat.DEFAULT.getCommentStart(), format.getCommentStart());
324-
assertEquals("line separator", CSVFormat.DEFAULT.getRecordSeparator(), format.getRecordSeparator());
324+
assertEquals("record separator", CSVFormat.DEFAULT.getRecordSeparator(), format.getRecordSeparator());
325325
assertEquals("escape", CSVFormat.DEFAULT.getEscape(), format.getEscape());
326326
assertEquals("trim", CSVFormat.DEFAULT.getIgnoreSurroundingSpaces(), format.getIgnoreSurroundingSpaces());
327327
assertEquals("empty lines", CSVFormat.DEFAULT.getIgnoreEmptyLines(), format.getIgnoreEmptyLines());

0 commit comments

Comments
 (0)