diff options
author | Brett Chabot <brettchabot@google.com> | 2019-02-27 15:37:59 -0800 |
---|---|---|
committer | Brett Chabot <brettchabot@google.com> | 2019-03-01 16:54:09 +0000 |
commit | 51d58aa7ea09fd92cfcf11bba608470f2a321c50 (patch) | |
tree | b4a079c268b1426d97c4d444c195d65969ced48c /tests/src/android/net/apf/ApfTest.java | |
parent | 99ed3482a3e41db0d6d8dd2da91ec8d95a8450fc (diff) |
Migrate frameworks/base/tests/testables and its users to androidx.test
See go/jetpack-test-android-migration
This is the internal version of AOSP change aosp/908373
Test: m -j TestablesTests NetworkStackTests FrameworksServicesTests SystemUITests FrameworksUiServicesTests ExtServicesUnitTests WmTests FrameworksCoreTests
Exempt-From-Owner-Approval: automated package name refactoring; already reviewed on AOSP
Change-Id: Ib04d80954bd8536914d88c66b28e6632e60a6245
Diffstat (limited to 'tests/src/android/net/apf/ApfTest.java')
-rw-r--r-- | tests/src/android/net/apf/ApfTest.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/src/android/net/apf/ApfTest.java b/tests/src/android/net/apf/ApfTest.java index 3414397..88a05d5 100644 --- a/tests/src/android/net/apf/ApfTest.java +++ b/tests/src/android/net/apf/ApfTest.java @@ -53,14 +53,15 @@ import android.net.util.SharedLog; import android.os.ConditionVariable; import android.os.Parcelable; import android.os.SystemClock; -import android.support.test.InstrumentationRegistry; -import android.support.test.filters.SmallTest; -import android.support.test.runner.AndroidJUnit4; import android.system.ErrnoException; import android.system.Os; import android.text.format.DateUtils; import android.util.Log; +import androidx.test.InstrumentationRegistry; +import androidx.test.filters.SmallTest; +import androidx.test.runner.AndroidJUnit4; + import com.android.internal.util.HexDump; import com.android.server.networkstack.tests.R; import com.android.server.util.NetworkStackConstants; |