Add comment why test uses a different CSVFormat

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1460369 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-03-24 13:38:32 +00:00
parent dbbae1eccd
commit 3358e83a0d
1 changed files with 1 additions and 0 deletions

View File

@ -329,6 +329,7 @@ public class CSVLexerTest {
@Test @Test
@Ignore @Ignore
public void testEscapedControlCharacter() throws Exception { public void testEscapedControlCharacter() throws Exception {
// we are explicitly using an escape different from \ here, because \r is the character sequence for CR
final Lexer lexer = getLexer("character!rEscaped", CSVFormat.newBuilder().withEscape('!').build()); final Lexer lexer = getLexer("character!rEscaped", CSVFormat.newBuilder().withEscape('!').build());
assertTokenEquals(EOF, "character!rEscaped", lexer.nextToken(new Token())); assertTokenEquals(EOF, "character!rEscaped", lexer.nextToken(new Token()));
} }