Skip to content

Commit 8bba58d

Browse files
committed
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
1 parent a1f7d8b commit 8bba58d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/csv/CSVParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void testGetLine() throws IOException {
6161
assertTrue(Arrays.equals(re, parser.getRecord().values()));
6262
}
6363

64-
assertTrue(parser.getRecord() == null);
64+
assertNull(parser.getRecord());
6565
}
6666

6767
@Test

0 commit comments

Comments
 (0)