Skip to content

Commit 39f51aa

Browse files
committed
fixup: address linter & test issue
1 parent 9a43f20 commit 39f51aa

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

test/parallel/test-require-extension-over-directory.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ assert.strictEqual(
1515
' requirements'
1616
);
1717

18-
const fakePath = [fixtures.path('module-extension-over-directory', 'inner'), 'fake', '..'].join(path.sep);
18+
const fakePath = [
19+
fixtures.path('module-extension-over-directory', 'inner'),
20+
'fake',
21+
'..'
22+
].join(path.sep);
1923
const fixturesRequireDir = require(fakePath);
2024

2125
assert.strictEqual(

test/parallel/test-require-extensions-same-filename-as-dir.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ const content = require(fixtures.path('json-with-directory-name-module',
2828
'module-stub', 'one', 'two',
2929
'three.js'));
3030

31-
assert.strictEqual(content.rocko, 'artischocko');
32-
assert.notStrictEqual(content, 'hello from module-stub!');
31+
assert.notStrictEqual(content.rocko, 'artischocko');
32+
assert.strictEqual(content, 'hello from module-stub!');

0 commit comments

Comments
 (0)