assert: minor error message improvements
Adjust indentations and fix a typo. PR-URL: https://github.com/nodejs/node/pull/20315 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
This commit is contained in:
parent
564048dc29
commit
f0a6cb0593
@ -360,13 +360,10 @@ function createErrDiff(actual, expected, operator) {
|
||||
|
||||
// Strict equal with identical objects that are not identical by reference.
|
||||
if (identical === maxLines) {
|
||||
let base = 'Input object identical but not reference equal:';
|
||||
|
||||
if (operator !== 'strictEqual') {
|
||||
// This code path should not be possible to reach.
|
||||
// The output is identical but it is not clear why.
|
||||
base = 'Input objects not identical:';
|
||||
}
|
||||
// E.g., assert.deepStrictEqual(Symbol(), Symbol())
|
||||
const base = operator === 'strictEqual' ?
|
||||
'Input objects identical but not reference equal:' :
|
||||
'Input objects not identical:';
|
||||
|
||||
// We have to get the result again. The lines were all removed before.
|
||||
const actualLines = inspectValue(actual);
|
||||
|
@ -599,8 +599,7 @@ assert.throws(
|
||||
});
|
||||
|
||||
// notDeepEqual tests
|
||||
message = 'Identical input passed to notDeepStrictEqual:\n\n' +
|
||||
' [\n 1\n ]\n';
|
||||
message = 'Identical input passed to notDeepStrictEqual:\n\n[\n 1\n]\n';
|
||||
assert.throws(
|
||||
() => assert.notDeepEqual([1], [1]),
|
||||
{ message });
|
||||
@ -901,7 +900,7 @@ assert.throws(() => { throw null; }, 'foo');
|
||||
assert.throws(
|
||||
() => assert.strictEqual([], []),
|
||||
{
|
||||
message: 'Input object identical but not reference equal:\n\n []\n'
|
||||
message: 'Input objects identical but not reference equal:\n\n[]\n'
|
||||
}
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user