summaryrefslogtreecommitdiffstats
path: root/toolkit/xre/test/test_launch_without_hang.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
commitd8bbc7858622b6d9c278469aab701ca0b609cddf (patch)
treeeff41dc61d9f714852212739e6b3738b82a2af87 /toolkit/xre/test/test_launch_without_hang.js
parentReleasing progress-linux version 125.0.3-1~progress7.99u1. (diff)
downloadfirefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz
firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/xre/test/test_launch_without_hang.js')
-rw-r--r--toolkit/xre/test/test_launch_without_hang.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/xre/test/test_launch_without_hang.js b/toolkit/xre/test/test_launch_without_hang.js
index feacae36d4..eef1ece226 100644
--- a/toolkit/xre/test/test_launch_without_hang.js
+++ b/toolkit/xre/test/test_launch_without_hang.js
@@ -100,7 +100,7 @@ function terminateFirefox(completion) {
process.init(file);
let processObserver = {
- observe: function PO_observe(aSubject, aTopic, aData) {
+ observe: function PO_observe(aSubject, aTopic) {
info("topic: " + aTopic + ", process exitValue: " + process.exitValue);
Assert.equal(
@@ -135,7 +135,7 @@ function launchProcess(file, args, env, timeoutMS, handler, attemptCount) {
state.attempt = attemptCount;
state.processObserver = {
- observe: function PO_observe(aSubject, aTopic, aData) {
+ observe: function PO_observe(aSubject, aTopic) {
if (!state.appTimer) {
// the app timer has been canceled; this process has timed out already so don't process further.
handler(false);
@@ -170,7 +170,7 @@ function launchProcess(file, args, env, timeoutMS, handler, attemptCount) {
// The timer callback to kill the process if it takes too long.
state.appTimerCallback = {
- notify: function TC_notify(aTimer) {
+ notify: function TC_notify() {
state.appTimer = null;
info("Restoring environment variables");