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

Commit f5a1ed72 authored by Nataniel Borges's avatar Nataniel Borges
Browse files

Reduce delays on Flicker test rotation

Flicker tests currently wait 3 seconds until the screen rotation have
been complete. This long delay may hide some issues. Reduce delay to 1
second.

Test: atest FlickerTests
Change-Id: I1646086018fac52c0751ff70fff1f5082fee4685
parent 527ee2e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ class CommonTransitions {
                    device.setOrientationNatural();
            }
            // Wait for animation to complete
            sleep(3000);
            sleep(1000);
        } catch (RemoteException e) {
            throw new RuntimeException(e);
        }