mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
test: change assert message to default
assert.strictEqual message argument removed to replace with default assert message to show the expected vs actual values PR-URL: https://github.com/nodejs/node/pull/18259 Refs: https://github.com/nodejs/node/issues/13296 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
6394c8d99d
commit
f5d9169ded
@ -10,11 +10,7 @@ const http = require('http');
|
|||||||
|
|
||||||
const expected = '/café🐶';
|
const expected = '/café🐶';
|
||||||
|
|
||||||
assert.strictEqual(
|
assert.strictEqual('/caf\u{e9}\u{1f436}', expected);
|
||||||
expected,
|
|
||||||
'/caf\u{e9}\u{1f436}',
|
|
||||||
'Sanity check that string literal produced the expected string'
|
|
||||||
);
|
|
||||||
|
|
||||||
const server = http.createServer(common.mustCall(function(req, res) {
|
const server = http.createServer(common.mustCall(function(req, res) {
|
||||||
assert.strictEqual(req.url, expected);
|
assert.strictEqual(req.url, expected);
|
||||||
|
Loading…
Reference in New Issue
Block a user