Skip to content

Commit

Permalink
test: change assert message to default
Browse files Browse the repository at this point in the history
assert.strictEqual message argument removed to replace
with default assert message to show the expected vs
actual values

Refs: nodejs#13296
  • Loading branch information
ryanmahan committed Jan 19, 2018
1 parent cbd6349 commit 45a938a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/known_issues/test-http-path-contains-unicode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 45a938a

Please sign in to comment.