You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2016/05/03 20:54:13 UTC

svn commit: r1742178 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVFormatTest.java

Author: britter
Date: Tue May  3 18:54:13 2016
New Revision: 1742178

URL: http://svn.apache.org/viewvc?rev=1742178&view=rev
Log:
Drop senseless assertion

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

Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVFormatTest.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVFormatTest.java?rev=1742178&r1=1742177&r2=1742178&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVFormatTest.java (original)
+++ commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVFormatTest.java Tue May  3 18:54:13 2016
@@ -369,10 +369,6 @@ public class CSVFormatTest {
         final CSVFormat formatWithHeader = CSVFormat.DEFAULT.withHeader(header);
         assertArrayEquals(header, formatWithHeader.getHeader());
         assertNotSame(header, formatWithHeader.getHeader());
-        header[0] = "A";
-        header[1] = "B";
-        header[2] = "C";
-        assertFalse(Arrays.equals(formatWithHeader.getHeader(), header));
     }
 
     @Test