Skip to content

Commit 3178725

Browse files
committed
Align test names to other tests of the same kind
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1509956 13f79535-47bb-0310-9956-ffa450edef68
1 parent 70485e4 commit 3178725

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)