summaryrefslogtreecommitdiffstats
path: root/dom/streams/test/xpcshell/subclassing.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/streams/test/xpcshell/subclassing.js')
-rw-r--r--dom/streams/test/xpcshell/subclassing.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/streams/test/xpcshell/subclassing.js b/dom/streams/test/xpcshell/subclassing.js
index b2b86cf353..8b6192b840 100644
--- a/dom/streams/test/xpcshell/subclassing.js
+++ b/dom/streams/test/xpcshell/subclassing.js
@@ -19,7 +19,7 @@ add_task(function subclass_helper() {
// The base class constructor is called.
let stream = new PartyStreamer({
// (The ReadableStream constructor calls this start method.)
- start(c) {
+ start() {
started = true;
},
});