diff options
| author | 2023-07-04 06:27:36 +0000 | |
|---|---|---|
| committer | 2023-07-04 06:27:36 +0000 | |
| commit | baeed5a4da11c3dd051869199050d5af801d82aa (patch) | |
| tree | 7c5f42fec99d4e1d8a1e51fe315c475039326844 | |
| parent | b93f0585abe0009dfa0c62cebbab77301cb95437 (diff) | |
| parent | f07d0da838b4901d2698b754d6aced12b7b0a0ff (diff) | |
Merge "Skip notification test on Wear."
| -rw-r--r-- | tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/NotificationTest.java | 2 |
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 |