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

Commit c117d0eb authored by Josh Tsuji's avatar Josh Tsuji Committed by Android (Google) Code Review
Browse files

Merge "Decrease stiffness for one test to reduce flakes."

parents c5785d38 8972dd0b
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -280,7 +280,12 @@ class PhysicsAnimatorTest : SysuiTestCase() {

        // Spring TRANSLATION_X to 100f, with an update and end listener provided.
        animator
                .spring(DynamicAnimation.TRANSLATION_X, 100f, springConfig)
                .spring(
                        DynamicAnimation.TRANSLATION_X,
                        100f,
                        // Use very low stiffness to ensure that all of the keyframes we're testing
                        // for are reported to the update listener.
                        springConfig.apply { stiffness = SpringForce.STIFFNESS_VERY_LOW })
                .addUpdateListener(mockUpdateListener)
                .addEndListener(mockEndListener)
                .start()