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:
parent
09a6e887b8
commit
c694d060bd
|
@ -338,7 +338,7 @@ public class CSVLexerTest {
|
||||||
@Test
|
@Test
|
||||||
public void testEscapedControlCharacter2() throws Exception {
|
public void testEscapedControlCharacter2() throws Exception {
|
||||||
final Lexer lexer = getLexer("character\\rEscaped", CSVFormat.newBuilder().withEscape('\\').build());
|
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)
|
@Test(expected = IOException.class)
|
||||||
|
|
Loading…
Reference in New Issue