summaryrefslogtreecommitdiffstats
path: root/remote/marionette/test/xpcshell/test_sync.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /remote/marionette/test/xpcshell/test_sync.js
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'remote/marionette/test/xpcshell/test_sync.js')
-rw-r--r--remote/marionette/test/xpcshell/test_sync.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/remote/marionette/test/xpcshell/test_sync.js b/remote/marionette/test/xpcshell/test_sync.js
index 87ec44e960..19969f4473 100644
--- a/remote/marionette/test/xpcshell/test_sync.js
+++ b/remote/marionette/test/xpcshell/test_sync.js
@@ -28,7 +28,7 @@ class MessageManager {
this.message = message;
}
- removeMessageListener(message) {
+ removeMessageListener() {
this.func = null;
this.message = null;
}
@@ -55,7 +55,7 @@ class MockTimer {
this.cancelled = false;
}
- initWithCallback(cb, timeout, type) {
+ initWithCallback(cb) {
this.ticks++;
if (this.ticks >= this.goal) {
cb();
@@ -216,7 +216,7 @@ add_task(function test_TimedPromise_timeoutTypes() {
add_task(async function test_TimedPromise_errorMessage() {
try {
- await new TimedPromise(resolve => {}, { timeout: 0 });
+ await new TimedPromise(() => {}, { timeout: 0 });
ok(false, "Expected Timeout error not raised");
} catch (e) {
ok(
@@ -226,7 +226,7 @@ add_task(async function test_TimedPromise_errorMessage() {
}
try {
- await new TimedPromise(resolve => {}, {
+ await new TimedPromise(() => {}, {
errorMessage: "Not found",
timeout: 0,
});