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 7fc5c69 commit bb2d292Copy full SHA for bb2d292
test/known_issues/test-http-path-contains-unicode.js
@@ -10,11 +10,7 @@ const http = require('http');
10
11
const expected = '/café🐶';
12
13
-assert.strictEqual(
14
- expected,
15
- '/caf\u{e9}\u{1f436}',
16
- 'Sanity check that string literal produced the expected string'
17
-);
+assert.strictEqual('/caf\u{e9}\u{1f436}', expected);
18
19
const server = http.createServer(common.mustCall(function(req, res) {
20
assert.strictEqual(req.url, expected);
0 commit comments