aboutsummaryrefslogtreecommitdiff
path: root/tests/common/src/com/android/tv/testing/testinput/TvTestInputConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common/src/com/android/tv/testing/testinput/TvTestInputConstants.java')
-rw-r--r--tests/common/src/com/android/tv/testing/testinput/TvTestInputConstants.java13
1 files changed, 5 insertions, 8 deletions
diff --git a/tests/common/src/com/android/tv/testing/testinput/TvTestInputConstants.java b/tests/common/src/com/android/tv/testing/testinput/TvTestInputConstants.java
index 498addfd..27d3036c 100644
--- a/tests/common/src/com/android/tv/testing/testinput/TvTestInputConstants.java
+++ b/tests/common/src/com/android/tv/testing/testinput/TvTestInputConstants.java
@@ -15,25 +15,22 @@
*/
package com.android.tv.testing.testinput;
-import com.android.tv.testing.ChannelInfo;
+import com.android.tv.testing.data.ChannelInfo;
-/**
- * Constants for interacting with TvTestInput.
- */
+/** Constants for interacting with TvTestInput. */
public final class TvTestInputConstants {
/**
* Channel 1.
*
- * <p> By convention Channel 1 should not be changed. Test often start by tuning to this
- * channel.
+ * <p>By convention Channel 1 should not be changed. Test often start by tuning to this channel.
*/
public static final ChannelInfo CH_1_DEFAULT_DONT_MODIFY = ChannelInfo.create(null, 1);
/**
* Channel 2.
*
- * <p> By convention the state of Channel 2 is changed by tests. Testcases should explicitly
- * set the state of this channel before using it in tests.
+ * <p>By convention the state of Channel 2 is changed by tests. Testcases should explicitly set
+ * the state of this channel before using it in tests.
*/
public static final ChannelInfo CH_2 = ChannelInfo.create(null, 2);
}