Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3349)

Unified Diff: chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java

Issue 2735133003: [Cleanup] Run git cl format on minidump uploader files. (Closed)
Patch Set: Manually revert questionable changes Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698