diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /testing/mochitest/browser-test.js | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/mochitest/browser-test.js')
-rw-r--r-- | testing/mochitest/browser-test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/mochitest/browser-test.js b/testing/mochitest/browser-test.js index 98b9055605..1f9798bb36 100644 --- a/testing/mochitest/browser-test.js +++ b/testing/mochitest/browser-test.js @@ -45,7 +45,7 @@ var TabDestroyObserver = { Services.obs.removeObserver(this, "message-manager-disconnect"); }, - observe(subject, topic, data) { + observe(subject, topic) { if (topic == "message-manager-close") { this.outstanding.add(subject); } else if (topic == "message-manager-disconnect") { @@ -516,7 +516,7 @@ Tester.prototype = { this.SimpleTest.waitForFocus(aCallback); }, - finish: function Tester_finish(aSkipSummary) { + finish: function Tester_finish() { var passCount = this.tests.reduce((a, f) => a + f.passCount, 0); var failCount = this.tests.reduce((a, f) => a + f.failCount, 0); var todoCount = this.tests.reduce((a, f) => a + f.todoCount, 0); @@ -564,7 +564,7 @@ Tester.prototype = { this.repeat = 0; }, - observe: function Tester_observe(aSubject, aTopic, aData) { + observe: function Tester_observe(aSubject, aTopic) { if (!aTopic) { this.onConsoleMessage(aSubject); } |