summaryrefslogtreecommitdiffstats
path: root/dom/ipc/tests/browser_gc_schedule.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/ipc/tests/browser_gc_schedule.js')
-rw-r--r--dom/ipc/tests/browser_gc_schedule.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/ipc/tests/browser_gc_schedule.js b/dom/ipc/tests/browser_gc_schedule.js
index 8b44c98eae..e1381f82c0 100644
--- a/dom/ipc/tests/browser_gc_schedule.js
+++ b/dom/ipc/tests/browser_gc_schedule.js
@@ -15,7 +15,7 @@ async function waitForGCBegin() {
// This fixes a ReferenceError for Date, it's weird.
ok(Date.now(), "Date.now()");
var when = await new Promise(resolve => {
- observer.observe = function (subject, topic, data) {
+ observer.observe = function () {
resolve(Date.now());
};
@@ -40,7 +40,7 @@ async function waitForGCEnd() {
// This fixes a ReferenceError for Date, it's weird.
ok(Date.now(), "Date.now()");
let when = await new Promise(resolve => {
- observer.observe = function (subject, topic, data) {
+ observer.observe = function () {
resolve(Date.now());
};