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 the arguments order in assert.strictEqual
  • Loading branch information
rt33 committed Nov 24, 2018
commit cf5e4020a74c3f9c1fe4d9482748f262e35cd720
2 changes: 1 addition & 1 deletion test/parallel/test-http-request-end.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const server = http.Server(function(req, res) {
});

req.on('end', function() {
assert.strictEqual(expected, result);
assert.strictEqual(result, expected);
server.close();
res.writeHead(200);
res.end('hello world\n');
Expand Down