test: fix assert.strictEqual() argument order

PR-URL: https://github.com/nodejs/node/pull/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>
pull/23548/merge
Ben Schaaf 2018-10-12 10:24:33 -07:00 committed by Ruben Bridgewater
parent 8f68ed92fc
commit 8c86463d9f
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762
1 changed files with 1 additions and 1 deletions

View File

@ -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();