Add missing white spaces

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1463212 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-04-01 17:24:43 +00:00
parent 09a6e887b8
commit c694d060bd
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ public class CSVLexerTest {
@Test
public void testEscapedControlCharacter2() throws Exception {
final Lexer lexer = getLexer("character\\rEscaped", CSVFormat.newBuilder().withEscape('\\').build());
assertThat(lexer.nextToken(new Token()), hasContent("character"+CR+"Escaped"));
assertThat(lexer.nextToken(new Token()), hasContent("character" + CR + "Escaped"));
}
@Test(expected = IOException.class)