Skip to content

Commit 3294ed6

Browse files
committed
CSV-117 Validate format parameters in constructor
Oops - another test case needs fixing git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1603991 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3cd5067 commit 3294ed6

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
@@ -283,7 +283,7 @@ public void testQuoteCharSameAsCommentStartThrowsExceptionForWrapperType() {
283283
CSVFormat.DEFAULT.withQuoteChar(new Character('!')).withCommentStart('!');
284284
}
285285

286-
@Test//(expected = IllegalArgumentException.class)
286+
@Test(expected = IllegalArgumentException.class)
287287
public void testQuoteCharSameAsDelimiterThrowsException() {
288288
CSVFormat.DEFAULT.withQuoteChar('!').withDelimiter('!');
289289
}

0 commit comments

Comments
 (0)