DiffCommandTest: Don't call toString on String instances

Change-Id: Ib308b3498593d595b3d8741a9b2d241bbc7441c3
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2016-10-19 14:03:27 +09:00
parent 9a7d28019a
commit a5dde985a0
1 changed files with 5 additions and 5 deletions

View File

@ -95,7 +95,7 @@ public void testDiffModified() throws Exception {
+ "\\ No newline at end of file\n"
+ "+folder change\n"
+ "\\ No newline at end of file\n";
assertEquals(expected.toString(), actual);
assertEquals(expected, actual);
}
}
@ -130,7 +130,7 @@ public void testDiffCached() throws Exception {
+ "@@ -0,0 +1 @@\n"
+ "+folder\n"
+ "\\ No newline at end of file\n";
assertEquals(expected.toString(), actual);
assertEquals(expected, actual);
}
}
@ -179,7 +179,7 @@ public void testDiffTwoCommits() throws Exception {
+ "\\ No newline at end of file\n"
+ "+folder change\n"
+ "\\ No newline at end of file\n";
assertEquals(expected.toString(), actual);
assertEquals(expected, actual);
}
}
@ -201,7 +201,7 @@ public void testDiffWithPrefixes() throws Exception {
+ "+++ new/test.txt\n" + "@@ -1 +1 @@\n" + "-test\n"
+ "\\ No newline at end of file\n" + "+test change\n"
+ "\\ No newline at end of file\n";
assertEquals(expected.toString(), actual);
assertEquals(expected, actual);
}
}
@ -223,7 +223,7 @@ public void testDiffWithNegativeLineCount() throws Exception {
+ "index f55b5c9..c5ec8fd 100644\n" + "--- a/test.txt\n"
+ "+++ b/test.txt\n" + "@@ -4,3 +4,3 @@\n" + " 3\n" + "-4\n"
+ "+4a\n" + " 5\n";
assertEquals(expected.toString(), actual);
assertEquals(expected, actual);
}
}