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

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

Remove Flicker test repetitions

Bug: 243638757

Test: atest FlickerTests WMShellFlickerTests
Change-Id: I053cb060fbab8c5346aef7428f667b7f97956d8f
parent 8aa8ea4d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -86,8 +86,7 @@ abstract class BaseBubbleScreen(
        @JvmStatic
        fun getParams(): List<FlickerTestParameter> {
            return FlickerTestParameterFactory.getInstance()
                    .getConfigNonRotationTests(supportedRotations = listOf(Surface.ROTATION_0),
                            repetitions = 3)
                    .getConfigNonRotationTests(supportedRotations = listOf(Surface.ROTATION_0))
        }

        const val FIND_OBJECT_TIMEOUT = 2000L
+1 −2
Original line number Diff line number Diff line
@@ -185,8 +185,7 @@ open class EnterPipTest(testSpec: FlickerTestParameter) : PipTransition(testSpec
        fun getParams(): List<FlickerTestParameter> {
            return FlickerTestParameterFactory.getInstance()
                .getConfigNonRotationTests(
                    supportedRotations = listOf(Surface.ROTATION_0),
                    repetitions = 3
                    supportedRotations = listOf(Surface.ROTATION_0)
                )
        }
    }
+1 −2
Original line number Diff line number Diff line
@@ -246,8 +246,7 @@ class EnterPipToOtherOrientationTest(
        fun getParams(): Collection<FlickerTestParameter> {
            return FlickerTestParameterFactory.getInstance()
                .getConfigNonRotationTests(
                    supportedRotations = listOf(Surface.ROTATION_0),
                    repetitions = 3
                    supportedRotations = listOf(Surface.ROTATION_0)
                )
        }
    }
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ class ExitPipViaExpandButtonClickTest(
        @JvmStatic
        fun getParams(): List<FlickerTestParameter> {
            return FlickerTestParameterFactory.getInstance().getConfigNonRotationTests(
                    supportedRotations = listOf(Surface.ROTATION_0), repetitions = 3)
                    supportedRotations = listOf(Surface.ROTATION_0))
        }
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ class ExitPipViaIntentTest(testSpec: FlickerTestParameter) : ExitPipToAppTransit
        @JvmStatic
        fun getParams(): List<FlickerTestParameter> {
            return FlickerTestParameterFactory.getInstance().getConfigNonRotationTests(
                supportedRotations = listOf(Surface.ROTATION_0), repetitions = 3)
                supportedRotations = listOf(Surface.ROTATION_0))
        }
    }
}
Loading