We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e019f0 commit 0b7aa27Copy full SHA for 0b7aa27
test/known_issues/test-http-path-contains-unicode.js
@@ -10,7 +10,7 @@ const http = require('http');
10
11
const expected = '/café🐶';
12
13
-assert.strictEqual('/caf\u{e9}\u{1f436}', expected);
+assert.strictEqual(expected, '/caf\u{e9}\u{1f436}');
14
15
const server = http.createServer(common.mustCall(function(req, res) {
16
assert.strictEqual(req.url, expected);
0 commit comments