aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/src/com/android/tv/util/images
diff options
context:
space:
mode:
authorLive Channels Team <no-reply@google.com>2018-06-30 13:27:01 -0700
committerNick Chalko <nchalko@google.com>2018-07-11 16:20:24 -0700
commitd74ec0c418c6b5cd73325d724e8c71b1e116d945 (patch)
treeb70ed04861c97fbdfd060b027c5817d0097e135d /tests/unit/src/com/android/tv/util/images
parent0360f7da105e57e0e48c427aef8c25411f9da9f3 (diff)
downloadTV-d74ec0c418c6b5cd73325d724e8c71b1e116d945.tar.gz
Replace references to android.support.test with androidx.test.
The Android Test Support Library is being renamed to AndroidX Test, with its root java namespace changing from android.support.test to androidx.test. And code location changing from tp/android/android_test_support to tp/android/androidx_test. More information: go/jetpack-test-lsc TAP global presubmit: https://test.corp.google.com/ui#id=OCL:202779348:BASE:202785125:1530379068287:f0eca0a1 Test: m -j TVUnitTests BUG: 79205333 PiperOrigin-RevId: 202796842 Change-Id: I4477e725a7c02da463923874d43f0fff940f3e75
Diffstat (limited to 'tests/unit/src/com/android/tv/util/images')
-rw-r--r--tests/unit/src/com/android/tv/util/images/ImageCacheTest.java4
-rw-r--r--tests/unit/src/com/android/tv/util/images/ScaledBitmapInfoTest.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/src/com/android/tv/util/images/ImageCacheTest.java b/tests/unit/src/com/android/tv/util/images/ImageCacheTest.java
index b7715c4a..41722135 100644
--- a/tests/unit/src/com/android/tv/util/images/ImageCacheTest.java
+++ b/tests/unit/src/com/android/tv/util/images/ImageCacheTest.java
@@ -20,8 +20,8 @@ import static com.android.tv.util.images.BitmapUtils.createScaledBitmapInfo;
import static com.google.common.truth.Truth.assertWithMessage;
import android.graphics.Bitmap;
-import android.support.test.filters.MediumTest;
-import android.support.test.runner.AndroidJUnit4;
+import androidx.test.filters.MediumTest;
+import androidx.test.runner.AndroidJUnit4;
import com.android.tv.util.images.BitmapUtils.ScaledBitmapInfo;
import org.junit.Before;
import org.junit.Test;
diff --git a/tests/unit/src/com/android/tv/util/images/ScaledBitmapInfoTest.java b/tests/unit/src/com/android/tv/util/images/ScaledBitmapInfoTest.java
index 005775b6..1bb650fb 100644
--- a/tests/unit/src/com/android/tv/util/images/ScaledBitmapInfoTest.java
+++ b/tests/unit/src/com/android/tv/util/images/ScaledBitmapInfoTest.java
@@ -18,8 +18,8 @@ package com.android.tv.util.images;
import static com.google.common.truth.Truth.assertWithMessage;
import android.graphics.Bitmap;
-import android.support.test.filters.SmallTest;
-import android.support.test.runner.AndroidJUnit4;
+import androidx.test.filters.SmallTest;
+import androidx.test.runner.AndroidJUnit4;
import com.android.tv.util.images.BitmapUtils.ScaledBitmapInfo;
import org.junit.Test;
import org.junit.runner.RunWith;