diff options
author | Nataniel Borges <natanieljr@google.com> | 2019-09-02 16:37:01 +0200 |
---|---|---|
committer | Nataniel Borges <natanieljr@google.com> | 2019-09-18 17:17:24 +0200 |
commit | f5a1ed72a89ea83ed4ce9ecf37e3b92c0cff29a6 (patch) | |
tree | 6b41b2956b48cb51b7c51b1b53dc2b624bdf52e6 /tests/FlickerTests/src | |
parent | 527ee2e14580b7aa76a8408d56b9ef526b9659e7 (diff) |
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
Diffstat (limited to 'tests/FlickerTests/src')
-rw-r--r-- | tests/FlickerTests/src/com/android/server/wm/flicker/CommonTransitions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/FlickerTests/src/com/android/server/wm/flicker/CommonTransitions.java b/tests/FlickerTests/src/com/android/server/wm/flicker/CommonTransitions.java index 0173b24bb528..1d44ea490f25 100644 --- a/tests/FlickerTests/src/com/android/server/wm/flicker/CommonTransitions.java +++ b/tests/FlickerTests/src/com/android/server/wm/flicker/CommonTransitions.java @@ -67,7 +67,7 @@ class CommonTransitions { device.setOrientationNatural(); } // Wait for animation to complete - sleep(3000); + sleep(1000); } catch (RemoteException e) { throw new RuntimeException(e); } |