From dd28335d78889e4138eb124f9dd05f9be498964d Mon Sep 17 00:00:00 2001 From: Federico Baron Date: Tue, 19 Nov 2024 00:49:26 +0000 Subject: [PATCH] Remove any fixed landscape foldable dumps Bug: 364711064 Flag: com.android.launcher3.one_grid_specs Test: DeviceProfileAlternativeDisplaysDumpTest Change-Id: I71f026d34dd536cc4041e1dd36908824eb479153 --- .../src/com/android/launcher3/AbstractDeviceProfileTest.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/multivalentTests/src/com/android/launcher3/AbstractDeviceProfileTest.kt b/tests/multivalentTests/src/com/android/launcher3/AbstractDeviceProfileTest.kt index f8794f86b4..c4519ebfd5 100644 --- a/tests/multivalentTests/src/com/android/launcher3/AbstractDeviceProfileTest.kt +++ b/tests/multivalentTests/src/com/android/launcher3/AbstractDeviceProfileTest.kt @@ -168,7 +168,6 @@ abstract class AbstractDeviceProfileTest { isLandscape: Boolean = false, isGestureMode: Boolean = true, isFolded: Boolean = false, - isFixedLandscape: Boolean = false, ) { val (unfoldedNaturalX, unfoldedNaturalY) = deviceSpecUnfolded.naturalSize val unfoldedWindowsBounds = @@ -195,7 +194,6 @@ abstract class AbstractDeviceProfileTest { rotation = if (isLandscape) Surface.ROTATION_90 else Surface.ROTATION_0, isGestureMode = isGestureMode, densityDpi = deviceSpecFolded.densityDpi, - isFixedLandscape = isFixedLandscape, ) } else { initializeCommonVars( @@ -204,7 +202,6 @@ abstract class AbstractDeviceProfileTest { rotation = if (isLandscape) Surface.ROTATION_0 else Surface.ROTATION_90, isGestureMode = isGestureMode, densityDpi = deviceSpecUnfolded.densityDpi, - isFixedLandscape = isFixedLandscape, ) } }