Skip to content

Commit 4958e7a

Browse files
benschaafjasnell
authored andcommitted
test: fix assert.strictEqual() argument order
PR-URL: #23515 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 1eea1aa commit 4958e7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function runTests() {
4444
await checkAsyncStackTrace(session);
4545

4646
await session.runToCompletion();
47-
assert.strictEqual(55, (await instance.expectShutdown()).exitCode);
47+
assert.strictEqual((await instance.expectShutdown()).exitCode, 55);
4848
}
4949

5050
runTests();

0 commit comments

Comments
 (0)