Don't use == null; use assertNull
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1303983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a1f7d8b166
commit
8bba58d1ed
|
@ -61,7 +61,7 @@ public class CSVParserTest {
|
|||
assertTrue(Arrays.equals(re, parser.getRecord().values()));
|
||||
}
|
||||
|
||||
assertTrue(parser.getRecord() == null);
|
||||
assertNull(parser.getRecord());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue