Skip to content

Commit

Permalink
test: Fixes argument order in assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
Illescas, Ricardo committed Oct 12, 2018
1 parent 7a28070 commit 116134f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/known_issues/test-http-path-contains-unicode.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const http = require('http');

const expected = '/café🐶';

assert.strictEqual('/caf\u{e9}\u{1f436}', expected);
assert.strictEqual(expected, '/caf\u{e9}\u{1f436}');

const server = http.createServer(common.mustCall(function(req, res) {
assert.strictEqual(req.url, expected);
Expand Down

0 comments on commit 116134f

Please sign in to comment.