From 0d4c061b4abe8a75e5bbef404db2338be0582f51 Mon Sep 17 00:00:00 2001 From: Tsuyoshi Horo Date: Sat, 9 Nov 2024 09:56:42 +0000 Subject: [PATCH] Bug 1930045 [wpt PR 49058] - Revert "Add more descriptive error messages to TapToStopFling.html for better debugging.", a=testonly Automatic update from web-platform-tests Revert "Add more descriptive error messages to TapToStopFling.html for better debugging." This reverts commit 3a320b5899a0c450412f4a91ac38f0ca0873b415. Reason for revert: Failing on bot Bug: 378008882 Original change's description: > Add more descriptive error messages to TapToStopFling.html for better debugging. > > Also changed file name to conform to convention. > > Change-Id: Ib901161728143882f0f2abdc01e79c03bdec7f6d > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6001495 > Reviewed-by: Michal Mocny > Commit-Queue: Hao Liu > Cr-Commit-Position: refs/heads/main@{#1379954} Change-Id: Ib64f7714285384357b18c24dac44f96cc4e74025 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5999048 Auto-Submit: Tsuyoshi Horo Bot-Commit: Rubber Stamper Owners-Override: Tsuyoshi Horo Commit-Queue: Tsuyoshi Horo Cr-Commit-Position: refs/heads/main@{#1380147} -- wpt-commits: b0f35fdd1d934fa57d1f98759dc10ddab29f7798 wpt-pr: 49058 --- .../{tap-to-stop-fling.html => TapToStopFling.html} | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) rename testing/web-platform/tests/event-timing/{tap-to-stop-fling.html => TapToStopFling.html} (91%) diff --git a/testing/web-platform/tests/event-timing/tap-to-stop-fling.html b/testing/web-platform/tests/event-timing/TapToStopFling.html similarity index 91% rename from testing/web-platform/tests/event-timing/tap-to-stop-fling.html rename to testing/web-platform/tests/event-timing/TapToStopFling.html index d088612e86ef..df309d6584c7 100644 --- a/testing/web-platform/tests/event-timing/tap-to-stop-fling.html +++ b/testing/web-platform/tests/event-timing/TapToStopFling.html @@ -32,12 +32,10 @@ assert_equals(entries.length, 2, "two pointerdown entries should be received"); let entry = entries[0]; assert_equals(entry.name, 'pointerdown'); - assert_equals(entry.interactionId, 0, '1st pointerdown event should have a \ - 0 interaction id'); + assert_equals(entry.interactionId, 0); entry = entries[1]; assert_equals(entry.name, 'pointerdown'); - assert_equals(entry.interactionId, 0, '2nd pointerdown event should have a \ - 0 interaction id'); + assert_equals(entry.interactionId, 0); } promise_test(async t => {