diff --git a/test/known_issues/test-http-path-contains-unicode.js b/test/known_issues/test-http-path-contains-unicode.js index 68b66b7c6940ed..e1954257a89f86 100644 --- a/test/known_issues/test-http-path-contains-unicode.js +++ b/test/known_issues/test-http-path-contains-unicode.js @@ -10,10 +10,10 @@ const http = require('http'); const expected = '/café🐶'; +//Sanity check for café🐶 is café🐶 assert.strictEqual( expected, - '/caf\u{e9}\u{1f436}', - 'Sanity check that string literal produced the expected string' + '/caf\u{e9}\u{1f436}' ); const server = http.createServer(common.mustCall(function(req, res) {