summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jinyi Shan <jinyis@google.com> 2023-07-04 06:27:36 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-07-04 06:27:36 +0000
commitbaeed5a4da11c3dd051869199050d5af801d82aa (patch)
tree7c5f42fec99d4e1d8a1e51fe315c475039326844
parentb93f0585abe0009dfa0c62cebbab77301cb95437 (diff)
parentf07d0da838b4901d2698b754d6aced12b7b0a0ff (diff)
Merge "Skip notification test on Wear."
-rw-r--r--tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/NotificationTest.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/NotificationTest.java b/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/NotificationTest.java
index f4a04a163ebb..b6b99242c414 100644
--- a/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/NotificationTest.java
+++ b/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/NotificationTest.java
@@ -97,6 +97,8 @@ public final class NotificationTest {
assumeFalse(pm.hasSystemFeature(PackageManager.FEATURE_AUTOMOTIVE));
// Do not run on TV. Direct Reply isn't supported on TV.
assumeFalse(pm.hasSystemFeature(PackageManager.FEATURE_LEANBACK_ONLY));
+ // Do not run on Wear. Direct Reply isn't supported on Wear.
+ assumeFalse(pm.hasSystemFeature(PackageManager.FEATURE_WATCH));
}
@After