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

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

Issue 2314423004: Fix checkdeps warnings due to duplicate JUnit test names (Closed)
Patch Set: Created 4 years, 3 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/LogcatExtractionCallableTest.java b/chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java
similarity index 99%
rename from chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java
rename to chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java
index e527f05213f4730cf7ddd56acb819f5dc6d88eb5..95facbcccc7e7b7fb5f4a7f90343fdeca8d410ea 100644
--- a/chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableTest.java
+++ b/chrome/android/junit/src/org/chromium/chrome/browser/crash/LogcatExtractionCallableUnitTest.java
@@ -28,7 +28,7 @@ import java.util.List;
*/
@RunWith(LocalRobolectricTestRunner.class)
@Config(manifest = Config.NONE)
-public class LogcatExtractionCallableTest {
+public class LogcatExtractionCallableUnitTest {
private static final int MAX_LINES = 5;
@Test
@@ -48,7 +48,7 @@ public class LogcatExtractionCallableTest {
@Test
public void testElideUrl2() {
String original =
- "exception at org.chromium.chrome.browser.crash.LogcatExtractionCallableTest";
+ "exception at org.chromium.chrome.browser.crash.LogcatExtractionCallableUnitTest";
assertEquals(original, LogcatExtractionCallable.elideUrl(original));
}

Powered by Google App Engine
This is Rietveld 408576698