Skip to content

Commit 652cadb

Browse files
m0rtyntargos
authored andcommitted
test: fix arguments order of comparsion functions
Place actual values as the first agruments and expected as the second. PR-URL: #27907 Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 728bc2f commit 652cadb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/parallel/test-http2-origin.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const ca = readKey('fake-startcom-root-cert.pem', 'binary');
9696
client.on('origin', mustCall((origins) => {
9797
const check = checks.shift();
9898
originSet.push(...check);
99-
deepStrictEqual(originSet, client.originSet);
99+
deepStrictEqual(client.originSet, originSet);
100100
deepStrictEqual(origins, check);
101101
countdown.dec();
102102
}, 2));
@@ -121,7 +121,7 @@ const ca = readKey('fake-startcom-root-cert.pem', 'binary');
121121

122122
client.on('origin', mustCall((origins) => {
123123
originSet.push(...check);
124-
deepStrictEqual(originSet, client.originSet);
124+
deepStrictEqual(client.originSet, originSet);
125125
deepStrictEqual(origins, check);
126126
client.close();
127127
server.close();
@@ -148,11 +148,11 @@ const ca = readKey('fake-startcom-root-cert.pem', 'binary');
148148
const client = connect(origin, { ca });
149149

150150
client.on('origin', mustCall((origins) => {
151-
deepStrictEqual([origin, 'https://foo.org'], client.originSet);
151+
deepStrictEqual(client.originSet, [origin, 'https://foo.org']);
152152
const req = client.request({ ':authority': 'foo.org' });
153153
req.on('response', mustCall((headers) => {
154-
strictEqual(421, headers[':status']);
155-
deepStrictEqual([origin], client.originSet);
154+
strictEqual(headers[':status'], 421);
155+
deepStrictEqual(client.originSet, [origin]);
156156
}));
157157
req.resume();
158158
req.on('close', mustCall(() => {

0 commit comments

Comments
 (0)