RebaseTodoFileTest: Fix "the the" typo

Reported by downstream analyzers.

Change-Id: I719bb2dd5b59390973dc2eb0d6854096e3768afb
Signed-off-by: Ivan Frade <ifrade@google.com>
This commit is contained in:
Ivan Frade 2019-06-12 09:35:21 +02:00
parent 1cfcde4853
commit 7c98a1aa1b
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ private void createTodoList(String... lines) throws IOException {
@Test
public void testReadTodoFile() throws Exception {
String[] expected = { "reword " + ObjectId.zeroId().name() + " Foo",
"# A comment in the the todo list",
"# A comment in the todo list",
"pick " + ObjectId.zeroId().name() + " Foo fie",
"squash " + ObjectId.zeroId().name() + " F",
"fixup " + ObjectId.zeroId().name(),
@ -93,7 +93,7 @@ public void testReadTodoFile() throws Exception {
assertEquals("Expected COMMENT", RebaseTodoLine.Action.COMMENT,
line.getAction());
assertEquals("Unexpected Message",
"# A comment in the the todo list",
"# A comment in the todo list",
line.getComment());
break;
case 2: