You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/04/08 20:33:37 UTC

svn commit: r1465715 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java

Author: britter
Date: Mon Apr  8 18:33:36 2013
New Revision: 1465715

URL: http://svn.apache.org/r1465715
Log:
Give test a name that's a bit more expressive and remove comment that is no longer needed

Modified:
    commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java

Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java?rev=1465715&r1=1465714&r2=1465715&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java (original)
+++ commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java Mon Apr  8 18:33:36 2013
@@ -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"+