Demote flaky transitions

Test: NA
Change-Id: Ibae3c102a953aeb4bbf69b76cf83b540457fb3e9
This commit is contained in:
Pablo Gamito
2022-02-16 12:48:05 +01:00
parent 904c875e23
commit 9e9c069e2d
2 changed files with 6 additions and 1 deletions

View File

@@ -61,6 +61,11 @@ import org.junit.runners.Parameterized
open class MovePipDownShelfHeightChangeTest(
testSpec: FlickerTestParameter
) : MovePipShelfHeightTransition(testSpec) {
@Before
open fun before() {
Assume.assumeFalse(isShellTransitionsEnabled)
}
/**
* Defines the transition used to run the test
*/

View File

@@ -58,7 +58,7 @@ class MovePipDownShelfHeightChangeTest_ShellTransit(
testSpec: FlickerTestParameter
) : MovePipDownShelfHeightChangeTest(testSpec) {
@Before
fun before() {
override fun before() {
Assume.assumeTrue(isShellTransitionsEnabled)
}
}