Skip to content

Commit 2e9cd82

Browse files
ShGKmeChALkeR
authored andcommitted
test: fix test-http2-multiheaders-raw
Arguments of deepStrictEqual were in incorrect order. Swap first argument (actual value) with the second one (expected value) to make the order correct. PR-URL: #27885 Reviewed-By: Ujjwal Sharma <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Сковорода Никита Андреевич <[email protected]>
1 parent ac95c2f commit 2e9cd82

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parallel/test-http2-multiheaders-raw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ server.on('stream', common.mustCall((stream, headers, flags, rawHeaders) => {
3434
'foo, bar, baz'
3535
];
3636

37-
assert.deepStrictEqual(expected, rawHeaders);
37+
assert.deepStrictEqual(rawHeaders, expected);
3838
stream.respond(src);
3939
stream.end();
4040
}));

0 commit comments

Comments
 (0)