From 300f2721ee6340f936c458ec656be2cf06c676d1 Mon Sep 17 00:00:00 2001 From: Nataniel Borges Date: Mon, 3 Jul 2023 20:41:41 +0000 Subject: [PATCH] Ignore nav bar at start on AOD for OpenAppFromLockscreenNotificationWithOverlayAppTest When the screen is off the nav bar doesn't appear Test: atest OpenAppFromLockscreenNotificationWithOverlayAppTest Fixes: 288591572 Bug: 209599395 Change-Id: Ied5d7abc503b22c61f815b7180281c85e6a60722 --- .../OpenAppFromLockscreenNotificationWithOverlayAppTest.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/FlickerTests/src/com/android/server/wm/flicker/notification/OpenAppFromLockscreenNotificationWithOverlayAppTest.kt b/tests/FlickerTests/src/com/android/server/wm/flicker/notification/OpenAppFromLockscreenNotificationWithOverlayAppTest.kt index c3363995d58f5..4e8a697d89027 100644 --- a/tests/FlickerTests/src/com/android/server/wm/flicker/notification/OpenAppFromLockscreenNotificationWithOverlayAppTest.kt +++ b/tests/FlickerTests/src/com/android/server/wm/flicker/notification/OpenAppFromLockscreenNotificationWithOverlayAppTest.kt @@ -28,6 +28,7 @@ import android.tools.device.helpers.wakeUpAndGoToHomeScreen import androidx.test.filters.RequiresDevice import com.android.server.wm.flicker.helpers.ShowWhenLockedAppHelper import org.junit.FixMethodOrder +import org.junit.Ignore import org.junit.Test import org.junit.runner.RunWith import org.junit.runners.MethodSorters @@ -106,9 +107,9 @@ class OpenAppFromLockscreenNotificationWithOverlayAppTest(flicker: LegacyFlicker super.visibleLayersShownMoreThanOneConsecutiveEntry() /** {@inheritDoc} */ - @FlakyTest(bugId = 209599395) @Test - override fun navBarLayerIsVisibleAtStartAndEnd() = super.navBarLayerIsVisibleAtStartAndEnd() + @Ignore("Not applicable to this CUJ. Display starts off and app is full screen at the end") + override fun navBarLayerIsVisibleAtStartAndEnd() {} /** {@inheritDoc} */ @Presubmit