| Index: chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java
|
| diff --git a/chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java b/chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java
|
| index 226330879b68d6f39c140e73fa8a2bdc29e767f6..c816e83d8c1a2b43547e9ea49671ffeaa036b946 100644
|
| --- a/chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java
|
| +++ b/chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java
|
| @@ -132,8 +132,8 @@ public class LogcatExtractionCallableUnitTest {
|
|
|
| @Test
|
| public void testLogcatWithoutBeginOrEnd_smallLogcat() {
|
| - final List<String> original = Arrays.asList("Line 1", "Line 2", "Line 3", "Line 4",
|
| - "Line 5");
|
| + final List<String> original =
|
| + Arrays.asList("Line 1", "Line 2", "Line 3", "Line 4", "Line 5");
|
| assertLogcatLists(original, original);
|
| }
|
|
|
| @@ -155,8 +155,8 @@ public class LogcatExtractionCallableUnitTest {
|
|
|
| @Test
|
| public void testLogcatWithBegin() {
|
| - final List<String> original = Arrays.asList("Line 1", "Line 2", BEGIN_MICRODUMP, "a",
|
| - "b", "c", "d", "e");
|
| + final List<String> original =
|
| + Arrays.asList("Line 1", "Line 2", BEGIN_MICRODUMP, "a", "b", "c", "d", "e");
|
| final List<String> expected = Arrays.asList("Line 1", "Line 2", SNIPPED_MICRODUMP);
|
| assertLogcatLists(expected, original);
|
| }
|
| @@ -169,8 +169,8 @@ public class LogcatExtractionCallableUnitTest {
|
|
|
| @Test
|
| public void testLogcatWithBeginAndEnd_smallLogcat() {
|
| - final List<String> original = Arrays.asList("Line 1", "Line 2", BEGIN_MICRODUMP, "a", "b",
|
| - "c", "d", "e", END_MICRODUMP);
|
| + final List<String> original = Arrays.asList(
|
| + "Line 1", "Line 2", BEGIN_MICRODUMP, "a", "b", "c", "d", "e", END_MICRODUMP);
|
| final List<String> expected = Arrays.asList("Line 1", "Line 2", SNIPPED_MICRODUMP);
|
| assertLogcatLists(expected, original);
|
| }
|
| @@ -195,8 +195,8 @@ public class LogcatExtractionCallableUnitTest {
|
|
|
| @Test
|
| public void testLogcatWithEndAndBegin_smallLogcat() {
|
| - final List<String> original = Arrays.asList(END_MICRODUMP, "Line 1", "Line 2",
|
| - BEGIN_MICRODUMP, "a", "b", "c", "d", "e");
|
| + final List<String> original = Arrays.asList(
|
| + END_MICRODUMP, "Line 1", "Line 2", BEGIN_MICRODUMP, "a", "b", "c", "d", "e");
|
| final List<String> expected =
|
| Arrays.asList(END_MICRODUMP, "Line 1", "Line 2", SNIPPED_MICRODUMP);
|
| assertLogcatLists(expected, original);
|
|
|