diff options
| author | 2024-07-02 09:28:00 +0000 | |
|---|---|---|
| committer | 2024-07-02 09:28:00 +0000 | |
| commit | ca314395e36c3130a66d70caf55f806f16c367e6 (patch) | |
| tree | a9b93827e7a8c35e1c622e05be883cdc5ef71c7a | |
| parent | 4988ed31cce9383b65f4526b493f3164a49f7f99 (diff) | |
| parent | 3de6db943ba41a12e15b7c783fbaa562298d6605 (diff) | |
Merge "Disable rotation checks in DragDividerToResize" into main
| -rw-r--r-- | libs/WindowManager/Shell/tests/flicker/service/src/com/android/wm/shell/flicker/service/splitscreen/scenarios/DragDividerToResize.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/WindowManager/Shell/tests/flicker/service/src/com/android/wm/shell/flicker/service/splitscreen/scenarios/DragDividerToResize.kt b/libs/WindowManager/Shell/tests/flicker/service/src/com/android/wm/shell/flicker/service/splitscreen/scenarios/DragDividerToResize.kt index c671fbe39ac5..b5a6d83afd05 100644 --- a/libs/WindowManager/Shell/tests/flicker/service/src/com/android/wm/shell/flicker/service/splitscreen/scenarios/DragDividerToResize.kt +++ b/libs/WindowManager/Shell/tests/flicker/service/src/com/android/wm/shell/flicker/service/splitscreen/scenarios/DragDividerToResize.kt @@ -48,6 +48,8 @@ constructor(val rotation: Rotation = Rotation.ROTATION_0) { fun setup() { tapl.setEnableRotation(true) tapl.setExpectedRotation(rotation.value) + // TODO: b/349075982 - Remove once launcher rotation and checks are stable. + tapl.setExpectedRotationCheckEnabled(false) SplitScreenUtils.enterSplit(wmHelper, tapl, device, primaryApp, secondaryApp, rotation) } |