Merge "Unmark ExitPipViaIntent flaky for shell-transitions" into tm-qpr-dev

This commit is contained in:
Evan Rosky
2022-04-28 16:51:15 +00:00
committed by Android (Google) Code Review

View File

@@ -80,7 +80,17 @@ class ExitPipViaIntentTest(testSpec: FlickerTestParameter) : ExitPipToAppTransit
/** {@inheritDoc} */
@FlakyTest(bugId = 206753786)
@Test
override fun statusBarLayerRotatesScales() = super.statusBarLayerRotatesScales()
override fun statusBarLayerRotatesScales() {
Assume.assumeFalse(isShellTransitionsEnabled)
super.statusBarLayerRotatesScales()
}
@Presubmit
@Test
fun statusBarLayerRotatesScales_ShellTransit() {
Assume.assumeTrue(isShellTransitionsEnabled)
super.statusBarLayerRotatesScales()
}
/** {@inheritDoc} */
@FlakyTest(bugId = 197726610)