Skip to content

Commit c694d06

Browse files
committed
Add missing white spaces
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1463212 13f79535-47bb-0310-9956-ffa450edef68
1 parent 09a6e88 commit c694d06

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
@@ -338,7 +338,7 @@ public void testEscapedControlCharacter() throws Exception {
338338
@Test
339339
public void testEscapedControlCharacter2() throws Exception {
340340
final Lexer lexer = getLexer("character\\rEscaped", CSVFormat.newBuilder().withEscape('\\').build());
341-
assertThat(lexer.nextToken(new Token()), hasContent("character"+CR+"Escaped"));
341+
assertThat(lexer.nextToken(new Token()), hasContent("character" + CR + "Escaped"));
342342
}
343343

344344
@Test(expected = IOException.class)

0 commit comments

Comments
 (0)