Skip to content

Commit bcb98f7

Browse files
committed
fixup! util: ESLint exception line styling
1 parent d1b18c0 commit bcb98f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-util-inspect.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2555,21 +2555,21 @@ assert.strictEqual(
25552555
{
25562556
assert.strictEqual(
25572557
inspect({
2558-
/* eslint-disable-next-line no-throw-literal */
2558+
// eslint-disable-next-line no-throw-literal
25592559
get foo() { throw null; }
25602560
}, { getters: true }),
25612561
'{ foo: [Getter: <Inspection threw>] }'
25622562
);
25632563
assert.strictEqual(
25642564
inspect({
2565-
/* eslint-disable-next-line no-throw-literal */
2565+
// eslint-disable-next-line no-throw-literal
25662566
get foo() { throw true; }
25672567
}, { getters: true }),
25682568
'{ foo: [Getter: <Inspection threw>] }'
25692569
);
25702570
assert.strictEqual(
25712571
inspect({
2572-
/* eslint-disable-next-line no-throw-literal */
2572+
// eslint-disable-next-line no-throw-literal
25732573
get foo() { throw {}; }
25742574
}, { getters: true }),
25752575
'{ foo: [Getter: <Inspection threw>] }'

0 commit comments

Comments
 (0)