File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -317,13 +317,13 @@ public void testEscapedTab() throws Exception {
317317 }
318318
319319 @ Test // TODO is this correct? Do we expect BACKSPACE to be un/escaped?
320- public void testEscapeBackspace () throws Exception {
320+ public void testEscapedBackspace () throws Exception {
321321 final Lexer lexer = getLexer ("character\\ " + BACKSPACE + "Escaped" , formatWithEscaping );
322322 assertThat (lexer .nextToken (new Token ()), hasContent ("character" + BACKSPACE + "Escaped" ));
323323 }
324324
325325 @ Test // TODO is this correct? Do we expect FF to be un/escaped?
326- public void testEscapeFF () throws Exception {
326+ public void testEscapedFF () throws Exception {
327327 final Lexer lexer = getLexer ("character\\ " + FF + "Escaped" , formatWithEscaping );
328328 assertThat (lexer .nextToken (new Token ()), hasContent ("character" + FF + "Escaped" ));
329329 }
You can’t perform that action at this time.
0 commit comments