From 1c728b40e5be7b66867ead5d1c99034ddab6d32f Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Mon, 8 Apr 2013 17:59:02 +0000 Subject: [PATCH] Give test a name that's a bit more expressive git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1465693 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/java/org/apache/commons/csv/CSVLexerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/csv/CSVLexerTest.java b/src/test/java/org/apache/commons/csv/CSVLexerTest.java index 1f4656e8..c4bb0e5a 100644 --- a/src/test/java/org/apache/commons/csv/CSVLexerTest.java +++ b/src/test/java/org/apache/commons/csv/CSVLexerTest.java @@ -59,7 +59,7 @@ public class CSVLexerTest { // Single line (without comment) @Test - public void testNextToken1() throws IOException { + public void testIgnoreSurroundingSpacesAreDeleted() throws IOException { final String code = "abc,def, hijk, lmnop, qrst,uv ,wxy ,z , ,"; final Lexer parser = getLexer(code, CSVFormat.newBuilder().withIgnoreSurroundingSpaces(true).build()); assertThat(parser.nextToken(new Token()), matches(TOKEN, "abc"));