Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Test: Changed the order of the arguments for strictEqual to match the…
… documentation
  • Loading branch information
benschaaf committed Oct 12, 2018
commit 0e0e9f1bd9011e509285d2d961e7baf201eb2463
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();