summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorvadimt <vadimt@google.com>2019-09-03 17:01:27 -0700
committervadimt <vadimt@google.com>2019-09-03 17:01:27 -0700
commit849cdc803d5d569e5e8b0225b56f589c6fde12c1 (patch)
treebd4b1511690916604afb9a575f714ed3940d45a3 /tests
parent7310bb4b5cef0a6c8d1cf52687a336e498309013 (diff)
downloadandroid_packages_apps_Trebuchet-849cdc803d5d569e5e8b0225b56f589c6fde12c1.tar.gz
android_packages_apps_Trebuchet-849cdc803d5d569e5e8b0225b56f589c6fde12c1.tar.bz2
android_packages_apps_Trebuchet-849cdc803d5d569e5e8b0225b56f589c6fde12c1.zip
Removing numbers from error message
They interfere with flake clustering Change-Id: I845b6e080824e00b9442070d53a0a3b448670d67
Diffstat (limited to 'tests')
-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)));