Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
test: correctly order assertion arguments
  • Loading branch information
sheminusminus authored and Trott committed Oct 14, 2018
commit f8ca6d63179e6acbc94f51fff19208807c19fcd1
2 changes: 1 addition & 1 deletion test/sequential/test-inspector-debug-brk-flag.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function runTests() {
await testBreakpointOnStart(session);
await session.runToCompletion();

assert.strictEqual(55, (await child.expectShutdown()).exitCode);
assert.strictEqual((await child.expectShutdown()).exitCode, 55);
}

runTests();