summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/resources/automatic-beacon-helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/resources/automatic-beacon-helper.js')
-rw-r--r--testing/web-platform/tests/fenced-frame/resources/automatic-beacon-helper.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/testing/web-platform/tests/fenced-frame/resources/automatic-beacon-helper.js b/testing/web-platform/tests/fenced-frame/resources/automatic-beacon-helper.js
index d0a4133e84..8286c94fec 100644
--- a/testing/web-platform/tests/fenced-frame/resources/automatic-beacon-helper.js
+++ b/testing/web-platform/tests/fenced-frame/resources/automatic-beacon-helper.js
@@ -92,13 +92,12 @@ async function setupAutomaticBeacon(
async function verifyBeaconData(
event_type, event_data, expected_success = true, t) {
if (expected_success) {
- const beacon_initiator_origin =
- await nextAutomaticBeacon(event_type, event_data);
+ const beacon_initiator_origin = await nextBeacon(event_type, event_data);
assert_equals(beacon_initiator_origin, get_host_info().HTTPS_ORIGIN);
} else {
const timeout = new Promise(r => t.step_timeout(r, 1000));
- const result = await Promise.race(
- [nextAutomaticBeacon(event_type, event_data), timeout]);
+ const result =
+ await Promise.race([nextBeacon(event_type, event_data), timeout]);
assert_true(typeof result === 'undefined');
}
}