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

Commit 2cc19aea authored by Mateusz Cicheński's avatar Mateusz Cicheński Committed by Android (Google) Code Review
Browse files

Merge "Remove the flaky annotation and bring test to presubmit" into main

parents 998363ae ad26a418
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -16,7 +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
import android.tools.device.flicker.legacy.LegacyFlickerTest
@@ -63,10 +63,12 @@ class MovePipDownOnShelfHeightChange(flicker: LegacyFlickerTest) :
    }

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

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