Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b083715

Browse filesBrowse files
inklinMylesBorins
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 d6dabc7 commit b083715
Copy full SHA for b083715

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: test/sequential/test-inspector-scriptparsed-context.js
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.