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 /devtools/shared/tests | |
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 'devtools/shared/tests')
-rw-r--r-- | devtools/shared/tests/xpcshell/test_eventemitter_static.js | 2 | ||||
-rw-r--r-- | devtools/shared/tests/xpcshell/test_loader.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/devtools/shared/tests/xpcshell/test_eventemitter_static.js b/devtools/shared/tests/xpcshell/test_eventemitter_static.js index 9b17a7612f..0d157e443a 100644 --- a/devtools/shared/tests/xpcshell/test_eventemitter_static.js +++ b/devtools/shared/tests/xpcshell/test_eventemitter_static.js @@ -300,7 +300,7 @@ const TESTS = { const actual = []; const object = { - [handler](type) { + [handler]() { actual.push(1); on(target, "message", () => { off(target, "message", object); diff --git a/devtools/shared/tests/xpcshell/test_loader.js b/devtools/shared/tests/xpcshell/test_loader.js index 56ee6459d3..f2d3b912ca 100644 --- a/devtools/shared/tests/xpcshell/test_loader.js +++ b/devtools/shared/tests/xpcshell/test_loader.js @@ -22,7 +22,7 @@ function run_test() { const DevToolsSpecialGlobal = Cu.getGlobalForObject( ChromeUtils.importESModule( "resource://devtools/shared/DevToolsInfaillibleUtils.sys.mjs", - { loadInDevToolsLoader: true } + { global: "devtools" } ) ); |