Clean up tests.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1578199 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-03-17 01:08:43 +00:00
parent 3cb24cbdfb
commit fcdf1f2efa
1 changed files with 2 additions and 1 deletions

View File

@ -728,7 +728,8 @@ public class CSVParserTest {
@Test(expected = IllegalArgumentException.class)
public void testParseUrlCharsetNullFormat() throws Exception {
CSVParser.parse(new URL("http://commons.apache.org"), Charset.defaultCharset(), null);
final CSVParser parser = CSVParser.parse(new URL("http://commons.apache.org"), Charset.defaultCharset(), null);
parser.close();
}
@Test