Give test a name that's a bit more expressive and remove comment that is no longer needed

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1465715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-04-08 18:33:36 +00:00
parent 7c4121b5e0
commit 19cb2ca2eb
1 changed files with 1 additions and 2 deletions

View File

@ -70,9 +70,8 @@ public class CSVLexerTest {
assertThat(parser.nextToken(new Token()), matches(EOF, ""));
}
// multiline including comments (and empty lines)
@Test
public void testNextToken2() throws IOException {
public void testIgnoreEmptyLines() throws IOException {
final String code =
"1,2,3,\n"+ // 1
"\n"+