Give test a better name

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1466591 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-04-10 17:48:28 +00:00
parent b05af3c049
commit 6c346b143a
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class CSVLexerTest {
}
@Test
public void testIgnoreSurroundingSpacesAreDeleted() throws IOException {
public void testSurroundingSpacesAreDeleted() throws IOException {
final String code = "noSpaces, leadingSpaces,trailingSpaces , surroundingSpaces , ,,";
final Lexer parser = getLexer(code, CSVFormat.newBuilder().withIgnoreSurroundingSpaces(true).build());
assertThat(parser.nextToken(new Token()), matches(TOKEN, "noSpaces"));