You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/05/12 16:59:59 UTC

svn commit: r1743528 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java

Author: ggregory
Date: Thu May 12 16:59:59 2016
New Revision: 1743528

URL: http://svn.apache.org/viewvc?rev=1743528&view=rev
Log:
The declared exception IOException is not actually thrown by the method testMySqlNullStringDefault() from type CSVPrinterTest.

Modified:
    commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java

Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java?rev=1743528&r1=1743527&r2=1743528&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java (original)
+++ commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java Thu May 12 16:59:59 2016
@@ -668,7 +668,7 @@ public class CSVPrinterTest {
     }
 
     @Test
-    public void testMySqlNullStringDefault() throws IOException {
+    public void testMySqlNullStringDefault() {
         assertEquals("\\N", CSVFormat.MYSQL.getNullString());
     }