aboutsummaryrefslogtreecommitdiff
path: root/tests/common/src/com/android/tv/testing/ProgramUtils.java
diff options
context:
space:
mode:
authorNick Chalko <nchalko@google.com>2016-02-26 13:38:57 -0800
committerNick Chalko <nchalko@google.com>2016-02-26 13:39:22 -0800
commitba5845f23b8fbc985890f892961abc8b39886611 (patch)
treeda373b9fe1955a2c7008c2e65df5ec3f5b087454 /tests/common/src/com/android/tv/testing/ProgramUtils.java
parent1abddd9f6225298066094e20a6c29061b6af4590 (diff)
downloadTV-ba5845f23b8fbc985890f892961abc8b39886611.tar.gz
Sync to ub-tv-interns at cc7c29d2a24a1343498f6d95ca5a79e003e6aefe
Change-Id: I580da190231e47c65b69f425b30ec4685eb50ce4
Diffstat (limited to 'tests/common/src/com/android/tv/testing/ProgramUtils.java')
-rw-r--r--tests/common/src/com/android/tv/testing/ProgramUtils.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/common/src/com/android/tv/testing/ProgramUtils.java b/tests/common/src/com/android/tv/testing/ProgramUtils.java
index 493891b6..227eb84a 100644
--- a/tests/common/src/com/android/tv/testing/ProgramUtils.java
+++ b/tests/common/src/com/android/tv/testing/ProgramUtils.java
@@ -25,6 +25,8 @@ import android.media.tv.TvContract.Programs;
import android.net.Uri;
import android.util.Log;
+import com.android.tv.common.TvContentRatingCache;
+
import java.util.ArrayList;
import java.util.concurrent.TimeUnit;
@@ -48,7 +50,7 @@ public class ProgramUtils {
values.put(Programs.COLUMN_CHANNEL_ID, channelId);
values.put(Programs.COLUMN_SHORT_DESCRIPTION, program.description);
values.put(Programs.COLUMN_CONTENT_RATING,
- Utils.contentRatingsToString(program.contentRatings));
+ TvContentRatingCache.contentRatingsToString(program.contentRatings));
long currentTimeMs = System.currentTimeMillis();
long targetEndTimeMs = currentTimeMs + PROGRAM_INSERT_DURATION_MS;