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: fix argument order in asserts
  • Loading branch information
CAYdenberg committed Oct 12, 2018
commit 542410723173948e32628369a385c5fe16f0306a
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