summaryrefslogtreecommitdiffstats
path: root/toolkit/xre/test/test_launch_without_hang.js
diff options
context:
space:
mode:
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");