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

Commit a592e23f authored by Pablo Gamito's avatar Pablo Gamito
Browse files

Mark MovePipDownOnShelfHeightChange#pipLayerMovesDown as flaky

Test: atest com.android.wm.shell.flicker.pip.MovePipDownOnShelfHeightChange

Bug: 292813143
Change-Id: I4eb985cecafdf537331f7650ad27e8fbe06d1822
parent 312f714e
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

package com.android.wm.shell.flicker.pip

import android.platform.test.annotations.FlakyTest
import android.platform.test.annotations.Presubmit
import android.tools.device.flicker.junit.FlickerParametersRunnerFactory
import android.tools.device.flicker.legacy.FlickerBuilder
@@ -63,8 +64,11 @@ class MovePipDownOnShelfHeightChange(flicker: LegacyFlickerTest) :
    }

    /** Checks that the visible region of [pipApp] window always moves down during the animation. */
    @Presubmit @Test fun pipWindowMovesDown() = pipWindowMoves(Direction.DOWN)
    @FlakyTest(bugId = 292813143) @Test fun pipWindowMovesDown() = pipWindowMoves(Direction.DOWN)

    /** Checks that the visible region of [pipApp] layer always moves down during the animation. */
    @Presubmit @Test fun pipLayerMovesDown() = pipLayerMoves(Direction.DOWN)
    @FlakyTest(bugId = 292813143)
    @Presubmit
    @Test
    fun pipLayerMovesDown() = pipLayerMoves(Direction.DOWN)
}