Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: updated order of the arguments for strictequal to match documentation #23515

Closed
wants to merge 1 commit into from
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
@@ -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();