Skip to content

Commit 1c728b4

Browse files
committed
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
1 parent 61a879b commit 1c728b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/csv/CSVLexerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private Lexer getLexer(final String input, final CSVFormat format) {
5959

6060
// Single line (without comment)
6161
@Test
62-
public void testNextToken1() throws IOException {
62+
public void testIgnoreSurroundingSpacesAreDeleted() throws IOException {
6363
final String code = "abc,def, hijk, lmnop, qrst,uv ,wxy ,z , ,";
6464
final Lexer parser = getLexer(code, CSVFormat.newBuilder().withIgnoreSurroundingSpaces(true).build());
6565
assertThat(parser.nextToken(new Token()), matches(TOKEN, "abc"));

0 commit comments

Comments
 (0)