Skip to content

Commit c6421fd

Browse files
committed
chore: lint js file
1 parent 7190ab0 commit c6421fd

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

test/pseudo-tty/test-os-guessFileDescriptorType.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ strictEqual(guessFileDescriptorType(55555), 'UNKNOWN', '55555 reported to be a h
1212
strictEqual(guessFileDescriptorType(2 ** 31 - 1), 'UNKNOWN', '2^31-1 reported to be a handle, but it is not');
1313

1414
[
15-
-1,
16-
1.1,
17-
'1',
18-
[],
19-
{},
20-
() => {},
21-
2 ** 31,
22-
true,
23-
false,
24-
1n,
25-
Symbol(),
26-
undefined,
27-
null,
15+
-1,
16+
1.1,
17+
'1',
18+
[],
19+
{},
20+
() => {},
21+
2 ** 31,
22+
true,
23+
false,
24+
1n,
25+
Symbol(),
26+
undefined,
27+
null,
2828
].forEach((val) => throws(() => guessFileDescriptorType(val), { code: 'ERR_INVALID_FD' }));

0 commit comments

Comments
 (0)