Skip to content

Commit ec2207a

Browse files
committed
util: test update
1 parent 3a7b49b commit ec2207a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/parallel/test-util-inspect.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2318,11 +2318,11 @@ assert.strictEqual(
23182318
);
23192319
rejection.catch(() => {});
23202320

2321-
// Verify that aliases do not show up as key while checking `inspect.colors`.
2321+
// Verify that aliases should show up as key while checking `inspect.colors`.
23222322
const colors = Object.keys(inspect.colors);
23232323
const aliases = Object.getOwnPropertyNames(inspect.colors)
23242324
.filter((c) => !colors.includes(c));
2325-
assert(!colors.includes('grey'));
2325+
assert(colors.includes('grey'));
23262326
assert(colors.includes('gray'));
23272327
// Verify that all aliases are correctly mapped.
23282328
for (const alias of aliases) {

0 commit comments

Comments
 (0)