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

Commit ad26a418 authored by Mateusz Cicheński's avatar Mateusz Cicheński
Browse files

Remove the flaky annotation and bring test to presubmit

The issue has been fixed in http://ag/24235063

Change-Id: Ib4511fcdff6bca5f872a4030f497ef9275a23bce
Test: atest com.android.wm.shell.flicker.pip.MovePipDownOnShelfHeightChange
Bug: 292813143
parent f31547fb
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)
}