Skip to content

Commit 4958e7a

Browse files
benschaafjasnell
authored andcommitted
test: fix assert.strictEqual() argument order
PR-URL: #23515 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 1eea1aa commit 4958e7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)