From: Ivan Frade Date: Wed, 12 Jun 2019 07:35:21 +0000 (+0200) Subject: RebaseTodoFileTest: Fix "the the" typo X-Git-Tag: v5.5.0.201908280940-m3~62^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fchanges%2F01%2F143801%2F1;p=jgit.git RebaseTodoFileTest: Fix "the the" typo Reported by downstream analyzers. Change-Id: I719bb2dd5b59390973dc2eb0d6854096e3768afb Signed-off-by: Ivan Frade --- diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RebaseTodoFileTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RebaseTodoFileTest.java index 5cfc75ca93..3d3c697107 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RebaseTodoFileTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RebaseTodoFileTest.java @@ -68,7 +68,7 @@ public class RebaseTodoFileTest extends RepositoryTestCase { @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 class RebaseTodoFileTest extends RepositoryTestCase { 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: