summaryrefslogtreecommitdiffstats
path: root/tests/tapl/com/android/launcher3/tapl/Background.java
diff options
context:
space:
mode:
authorvadimt <vadimt@google.com>2019-03-19 12:16:39 -0700
committervadimt <vadimt@google.com>2019-03-19 12:16:39 -0700
commit6fe4e93d4a6802433241b7030c33a2e162f9280d (patch)
tree244ef71de84be351fc91bf0036105e2e7087e882 /tests/tapl/com/android/launcher3/tapl/Background.java
parent0825e414f05c525e46a58c32d534989b20da6a41 (diff)
downloadpackages_apps_Trebuchet-6fe4e93d4a6802433241b7030c33a2e162f9280d.tar.gz
packages_apps_Trebuchet-6fe4e93d4a6802433241b7030c33a2e162f9280d.tar.bz2
packages_apps_Trebuchet-6fe4e93d4a6802433241b7030c33a2e162f9280d.zip
Stop using magic constant 0.6 for returning from all apps to overview
Bug: 123904290 Change-Id: If1b6caf562484649ee107532ffe21d25deff4b97
Diffstat (limited to 'tests/tapl/com/android/launcher3/tapl/Background.java')
-rw-r--r--tests/tapl/com/android/launcher3/tapl/Background.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/tapl/com/android/launcher3/tapl/Background.java b/tests/tapl/com/android/launcher3/tapl/Background.java
index 7031cd34c..2cde8ecd2 100644
--- a/tests/tapl/com/android/launcher3/tapl/Background.java
+++ b/tests/tapl/com/android/launcher3/tapl/Background.java
@@ -22,8 +22,6 @@ import static com.android.launcher3.tapl.TestHelpers.getOverviewPackageName;
import static org.junit.Assert.assertTrue;
-import android.view.ViewConfiguration;
-
import androidx.annotation.NonNull;
import androidx.test.uiautomator.By;
import androidx.test.uiautomator.Until;
@@ -67,9 +65,11 @@ public class Background extends LauncherInstrumentation.VisibleContainer {
final int swipeHeight = mLauncher.getTestInfo(
getSwipeHeightRequestName()).
getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD);
- final int slop = ViewConfiguration.get(mLauncher.getContext()).getScaledTouchSlop();
- mLauncher.swipe(centerX, startY, centerX, startY - swipeHeight - slop, expectedState);
+ mLauncher.swipe(
+ centerX, startY, centerX,
+ startY - swipeHeight - mLauncher.getTouchSlop(),
+ expectedState);
} else {
mLauncher.waitForSystemUiObject("recent_apps").click();
}