diff options
author | 2023-12-19 18:14:21 +0000 | |
---|---|---|
committer | 2024-01-03 22:51:38 +0000 | |
commit | 1964e60177a30b8ccc1e35cc0e5b2a16c265da35 (patch) | |
tree | 9a15f2c2882bd31e09fad12c40112e3991d6897c /test-runner/tests | |
parent | 8124c112df7e873921183d0b20a34e70069fdc54 (diff) |
Update the imports to androidx.test.filters.*
Bug: 316941721
Test: mmma .
Change-Id: I7550f55558185b92b473b4ece613c0b894a67fe5
Diffstat (limited to 'test-runner/tests')
-rw-r--r-- | test-runner/tests/src/android/test/AndroidTestRunnerTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test-runner/tests/src/android/test/AndroidTestRunnerTest.java b/test-runner/tests/src/android/test/AndroidTestRunnerTest.java index 67235480fa6d..bd6c04bca4d0 100644 --- a/test-runner/tests/src/android/test/AndroidTestRunnerTest.java +++ b/test-runner/tests/src/android/test/AndroidTestRunnerTest.java @@ -19,15 +19,15 @@ package android.test; import android.test.mock.MockContext; import android.test.suitebuilder.annotation.SmallTest; -import java.util.ArrayList; -import junit.framework.TestCase; import junit.framework.AssertionFailedError; import junit.framework.Test; -import junit.framework.TestSuite; +import junit.framework.TestCase; import junit.framework.TestListener; +import junit.framework.TestSuite; -import java.util.List; +import java.util.ArrayList; import java.util.Arrays; +import java.util.List; /** * Unit tests for {@link AndroidTestRunner} |