Skip to content

Commit 6c346b1

Browse files
committed
Give test a better name
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1466591 13f79535-47bb-0310-9956-ffa450edef68
1 parent b05af3c commit 6c346b1

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
@@ -58,7 +58,7 @@ private Lexer getLexer(final String input, final CSVFormat format) {
5858
}
5959

6060
@Test
61-
public void testIgnoreSurroundingSpacesAreDeleted() throws IOException {
61+
public void testSurroundingSpacesAreDeleted() throws IOException {
6262
final String code = "noSpaces, leadingSpaces,trailingSpaces , surroundingSpaces , ,,";
6363
final Lexer parser = getLexer(code, CSVFormat.newBuilder().withIgnoreSurroundingSpaces(true).build());
6464
assertThat(parser.nextToken(new Token()), matches(TOKEN, "noSpaces"));

0 commit comments

Comments
 (0)