Skip to content

Commit

Permalink
test: fix assert.strictEqual() argument order
Browse files Browse the repository at this point in the history
PR-URL: #23515
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
benschaaf authored and MylesBorins committed Oct 30, 2018
1 parent 161cbbb commit 0d6d6f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function runTests() {
await checkAsyncStackTrace(session);

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

runTests();

0 comments on commit 0d6d6f6

Please sign in to comment.