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
Next Next commit
Tests: fix incorrect expectation order
test-http-expect-handling.js has an instance of the test value and the expected value being reversed

Refs: https://nodejs.org/api/assert.html
  • Loading branch information
Amie committed Oct 12, 2018
commit 8285bdbdc3a3143200ace0dc26f79fda4f5df2c0
2 changes: 1 addition & 1 deletion test/parallel/test-http-expect-handling.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ function nextTest() {


process.on('exit', function() {
assert.strictEqual(2, testsComplete);
assert.strictEqual(testsComplete, 2);
});