Drop senseless assertion

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742178 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2016-05-03 18:54:13 +00:00
parent 42afea88a1
commit 3a3b4836e3
1 changed files with 0 additions and 4 deletions

View File

@ -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