Skip to content

Commit a797923

Browse files
inklinjasnell
authored andcommitted
test: fix argument order for assert.strictEqual
PR-URL: #23485 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 6936f9c commit a797923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sequential/test-inspector-scriptparsed-context.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ async function runTests() {
8181
await session.waitForBreakOnLine(0, 'evalmachine.<anonymous>');
8282

8383
await session.runToCompletion();
84-
assert.strictEqual(0, (await instance.expectShutdown()).exitCode);
84+
assert.strictEqual((await instance.expectShutdown()).exitCode, 0);
8585
}
8686

8787
runTests();

0 commit comments

Comments
 (0)