Skip to content

Commit 16e12d2

Browse files
committed
Change wrong input data of test. Test now fails because of CSV-58 and is therefore changed to be @ignore.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1466604 13f79535-47bb-0310-9956-ffa450edef68
1 parent fd8433b commit 16e12d2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/test/java/org/apache/commons/csv/CSVLexerTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,10 +329,12 @@ public void testEscapeFF() throws Exception {
329329
assertThat(lexer.nextToken(new Token()), hasContent("character" + FF + "Escaped"));
330330
}
331331

332+
// FIXME this should work after CSV-58 is resolved. Currently the result will be "characteraEscaped"
332333
@Test
334+
@Ignore
333335
public void testEscapedMySqlNullValue() throws Exception {
334336
// MySQL uses \N to symbolize null values. We have to restore this
335-
final Lexer lexer = getLexer("character\\\\NEscaped", formatWithEscaping);
337+
final Lexer lexer = getLexer("character\\NEscaped", formatWithEscaping);
336338
assertThat(lexer.nextToken(new Token()), hasContent("character\\NEscaped"));
337339
}
338340

0 commit comments

Comments
 (0)