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

Commit c285072a authored by Pablo Gamito's avatar Pablo Gamito Committed by Android (Google) Code Review
Browse files

Merge "Remove Flicker test repetitions"

parents b009d37e f17c8fcf
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