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 <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>
  • Loading branch information
sheminusminus authored and MylesBorins committed Nov 29, 2018
1 parent a5dd25f commit 5b95bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sequential/test-inspector-debug-brk-flag.js
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 5b95bdf

Please sign in to comment.