summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Tryshev <vadimt@google.com>2019-09-03 18:11:10 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-09-03 18:11:10 -0700
commitc6c63706faa2e84f5db9a464a4a4e9fabd9eaaf8 (patch)
treeabf5f13d5a0e2bf0ed84366d452f7ec6866f9e05
parent44e1e4959c83b2ff392484f37c12785c7209e012 (diff)
parent5e893727f893d68d780161cb400f967c126a6839 (diff)
downloadandroid_packages_apps_Trebuchet-c6c63706faa2e84f5db9a464a4a4e9fabd9eaaf8.tar.gz
android_packages_apps_Trebuchet-c6c63706faa2e84f5db9a464a4a4e9fabd9eaaf8.tar.bz2
android_packages_apps_Trebuchet-c6c63706faa2e84f5db9a464a4a4e9fabd9eaaf8.zip
Merge "Removing numbers from error message" into ub-launcher3-qt-qpr1-dev
am: 5e893727f8 Change-Id: Ie5bfb48d233abc7c21c8ff6df97affb4c9339f8e
-rw-r--r--tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
index 9d433527d..0bd63623d 100644
--- a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
+++ b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
@@ -763,8 +763,7 @@ public final class LauncherInstrumentation {
final Bundle parcel = (Bundle) executeAndWaitForEvent(
() -> linearGesture(startX, startY, endX, endY, steps),
event -> TestProtocol.SWITCHED_TO_STATE_MESSAGE.equals(event.getClassName()),
- "Swipe failed to receive an event for the swipe end: " + startX + ", " + startY
- + ", " + endX + ", " + endY);
+ "Swipe failed to receive an event for the swipe end");
assertEquals("Swipe switched launcher to a wrong state;",
TestProtocol.stateOrdinalToString(expectedState),
TestProtocol.stateOrdinalToString(parcel.getInt(TestProtocol.STATE_FIELD)));