Skip to content

Commit

Permalink
test: correctly order assertion arguments
Browse files Browse the repository at this point in the history
PR-URL: #23473
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
  • Loading branch information
sheminusminus authored and addaleax committed Oct 14, 2018
1 parent b22903e commit cf7b5a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sequential/test-inspector-debug-brk-flag.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function runTests() {
await testBreakpointOnStart(session);
await session.runToCompletion();

assert.strictEqual(55, (await child.expectShutdown()).exitCode);
assert.strictEqual((await child.expectShutdown()).exitCode, 55);
}

runTests();

0 comments on commit cf7b5a8

Please sign in to comment.