Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f07d0da8 authored by Jinyi Shan's avatar Jinyi Shan
Browse files

Skip notification test on Wear.

Direct reply is not supported on Wear.

BUG: 269715255
Test: atest InputMethodStressTest
Change-Id: I96793414195180cd06a6675f8896e6a79715d1e1
parent 9c3fa97e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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