Skip to content

Commit b822545

Browse files
raveneyextargos
authored andcommitted
test: switch the param order in the assertion
Switch the param order in the assertion at line 140 so that they are in the correct order (actual, expected) PR-URL: #28341 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 5367d02 commit b822545

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-tls-sni-option.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ test({
138138
function test(options, clientResult, serverResult, clientError, serverError) {
139139
const server = tls.createServer(serverOptions, (c) => {
140140
assert.deepStrictEqual(
141-
{ sni: c.servername, authorized: c.authorized },
142-
serverResult
141+
serverResult,
142+
{ sni: c.servername, authorized: c.authorized }
143143
);
144144
});
145145

0 commit comments

Comments
 (0)