Skip to content

Commit 531669b

Browse files
ShGKmetargos
authored andcommittedMay 28, 2019
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 724d9c8 commit 531669b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
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)
Please sign in to comment.