diff options
Diffstat (limited to 'dom/tests/browser/test-console-api.html')
-rw-r--r-- | dom/tests/browser/test-console-api.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/tests/browser/test-console-api.html b/dom/tests/browser/test-console-api.html index e8da7c311e..f5afdf96b2 100644 --- a/dom/tests/browser/test-console-api.html +++ b/dom/tests/browser/test-console-api.html @@ -54,7 +54,7 @@ } function nativeCallback() { - new Promise(function(resolve, reject) { resolve(42); }).then(console.log); + new Promise(function(resolve) { resolve(42); }).then(console.log); } function timeStamp(val) { |