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/transport/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/transport/tests')
5 files changed, 7 insertions, 7 deletions
diff --git a/devtools/shared/transport/tests/xpcshell/test_bulk_error.js b/devtools/shared/transport/tests/xpcshell/test_bulk_error.js index 52cc826e51..c06f2dc494 100644 --- a/devtools/shared/transport/tests/xpcshell/test_bulk_error.js +++ b/devtools/shared/transport/tests/xpcshell/test_bulk_error.js @@ -28,7 +28,7 @@ class TestBulkActor extends Actor { }; } - jsonReply({ length, reader, reply, done }) { + jsonReply({ length }) { Assert.equal(length, really_long().length); return { diff --git a/devtools/shared/transport/tests/xpcshell/test_dbgsocket.js b/devtools/shared/transport/tests/xpcshell/test_dbgsocket.js index 535431aa38..c210a80d84 100644 --- a/devtools/shared/transport/tests/xpcshell/test_dbgsocket.js +++ b/devtools/shared/transport/tests/xpcshell/test_dbgsocket.js @@ -103,7 +103,7 @@ async function test_socket_conn() { }); Assert.equal(packet.from, "root"); }, - onTransportClosed(status) { + onTransportClosed() { resolve(); }, }; @@ -154,7 +154,7 @@ function test_pipe_conn() { Assert.equal(packet.from, "root"); transport.close(); }, - onTransportClosed(status) { + onTransportClosed() { run_next_test(); }, }; diff --git a/devtools/shared/transport/tests/xpcshell/test_dbgsocket_connection_drop.js b/devtools/shared/transport/tests/xpcshell/test_dbgsocket_connection_drop.js index e08c2380fb..1e847f8012 100644 --- a/devtools/shared/transport/tests/xpcshell/test_dbgsocket_connection_drop.js +++ b/devtools/shared/transport/tests/xpcshell/test_dbgsocket_connection_drop.js @@ -66,7 +66,7 @@ var test_helper = async function (payload) { }); return new Promise(resolve => { transport.hooks = { - onPacket(packet) { + onPacket() { this.onPacket = function () { do_throw(new Error("This connection should be dropped.")); transport.close(); @@ -76,7 +76,7 @@ var test_helper = async function (payload) { transport._outgoing.push(new RawPacket(transport, payload)); transport._flushOutgoing(); }, - onTransportClosed(status) { + onTransportClosed() { Assert.ok(true); resolve(); }, diff --git a/devtools/shared/transport/tests/xpcshell/test_queue.js b/devtools/shared/transport/tests/xpcshell/test_queue.js index 603640e34d..69f109fdac 100644 --- a/devtools/shared/transport/tests/xpcshell/test_queue.js +++ b/devtools/shared/transport/tests/xpcshell/test_queue.js @@ -53,7 +53,7 @@ var test_transport = async function (transportFactory) { uri: NetUtil.newURI(getTestTempFile("bulk-input")), loadUsingSystemPrincipal: true, }, - function (input, status) { + function (input) { copyFrom(input).then(() => { input.close(); }); diff --git a/devtools/shared/transport/tests/xpcshell/test_transport_bulk.js b/devtools/shared/transport/tests/xpcshell/test_transport_bulk.js index 137cbd2679..736c6acd7d 100644 --- a/devtools/shared/transport/tests/xpcshell/test_transport_bulk.js +++ b/devtools/shared/transport/tests/xpcshell/test_transport_bulk.js @@ -53,7 +53,7 @@ var test_bulk_transfer_transport = async function (transportFactory) { uri: NetUtil.newURI(getTestTempFile("bulk-input")), loadUsingSystemPrincipal: true, }, - function (input, status) { + function (input) { copyFrom(input).then(() => { input.close(); }); |