Skip to content

Commit

Permalink
test: fix argument order in asserts
Browse files Browse the repository at this point in the history
PR-URL: #23499
Reviewed-By: Guy Bedford <[email protected]>
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]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
@CAYdenberg authored and MylesBorins committed Oct 30, 2018
1 parent e0a3e23 commit 13afb68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function runTests() {
'break2', 'runTest:8');

await session.runToCompletion();
assert.strictEqual(0, (await instance.expectShutdown()).exitCode);
assert.strictEqual((await instance.expectShutdown()).exitCode, 0);
}

function debuggerPausedAt(msg, functionName, previousTickLocation) {
Expand Down

0 comments on commit 13afb68

Please sign in to comment.