Skip to content

Commit d8e55f9

Browse files
committed
test: fix lint errors
1 parent bf43b8a commit d8e55f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-eventtarget-custom-inspect-does-not-throw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict';
22

3+
require('../common');
34
const assert = require('assert');
45
const util = require('util');
56

@@ -12,8 +13,7 @@ const fakeEventTarget = {
1213
someOtherField: 42
1314
};
1415

15-
// should not throw when calling the custom inspect method
16+
// Should not throw when calling the custom inspect method
1617
const output = util.inspect(fakeEventTarget);
1718

1819
assert.strictEqual(typeof output, 'string');
19-

0 commit comments

Comments
 (0)