aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/runtime
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-03-14 10:57:43 +0000
committerGravatar Yun Peng <pcloudy@google.com>2017-03-14 19:45:47 +0000
commit7807b6c897c0f8160ac7705db044b27207aca75a (patch)
tree5e9097dca3a87520422d9da463790ea882059a94 /src/test/java/com/google/devtools/build/lib/runtime
parent69eb9f53108b1071cef5335a086697b3daf2e509 (diff)
Global cleanup change.
-- PiperOrigin-RevId: 150051360 MOS_MIGRATED_REVID=150051360
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/runtime')
-rw-r--r--src/test/java/com/google/devtools/build/lib/runtime/TestSummaryTest.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/runtime/TestSummaryTest.java b/src/test/java/com/google/devtools/build/lib/runtime/TestSummaryTest.java
index 6ad3336b39..6619d1f3d5 100644
--- a/src/test/java/com/google/devtools/build/lib/runtime/TestSummaryTest.java
+++ b/src/test/java/com/google/devtools/build/lib/runtime/TestSummaryTest.java
@@ -38,7 +38,9 @@ import com.google.devtools.build.lib.vfs.inmemoryfs.InMemoryFileSystem;
import com.google.devtools.build.lib.view.test.TestStatus.BlazeTestStatus;
import com.google.devtools.build.lib.view.test.TestStatus.FailedTestCasesStatus;
import com.google.devtools.build.lib.view.test.TestStatus.TestCase;
-
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -46,10 +48,6 @@ import org.junit.runners.JUnit4;
import org.mockito.InOrder;
import org.mockito.Mockito;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-
@RunWith(JUnit4.class)
public class TestSummaryTest {
@@ -57,7 +55,7 @@ public class TestSummaryTest {
private static final String PATH = "package";
private static final String TARGET_NAME = "name";
private ConfiguredTarget stubTarget;
- private static final List<Long> SMALL_TIMING = ImmutableList.of(1L, 2L, 3L, 4L);
+ private static final ImmutableList<Long> SMALL_TIMING = ImmutableList.of(1L, 2L, 3L, 4L);
private static final int CACHED = SMALL_TIMING.size();
private static final int NOT_CACHED = 0;