]> source.dussan.org Git - jgit.git/commitdiff
RebaseTodoFileTest: Fix "the the" typo 01/143801/1
authorIvan Frade <ifrade@google.com>
Wed, 12 Jun 2019 07:35:21 +0000 (09:35 +0200)
committerIvan Frade <ifrade@google.com>
Wed, 12 Jun 2019 08:26:16 +0000 (10:26 +0200)
Reported by downstream analyzers.

Change-Id: I719bb2dd5b59390973dc2eb0d6854096e3768afb
Signed-off-by: Ivan Frade <ifrade@google.com>
org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RebaseTodoFileTest.java

index 5cfc75ca93acf26e005c8c4d09b08cccbdddee5e..3d3c697107590564adfe7bc6a2fa77384ff1b8d9 100644 (file)
@@ -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: