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:
Sebastian Bazley 2012-03-22 19:00:27 +00:00
parent a1f7d8b166
commit 8bba58d1ed
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class CSVParserTest {
assertTrue(Arrays.equals(re, parser.getRecord().values()));
}
assertTrue(parser.getRecord() == null);
assertNull(parser.getRecord());
}
@Test