Skip to content

Commit 0f7fee6

Browse files
committed
Linter feedback fixes.
1 parent a0ad69f commit 0f7fee6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/19-custom-environment-variables.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('Testing custom environment variable overrides', function() {
2020
process.env.NODE_CONFIG_DIR = [__dirname + '/19-config'].join(Path.delimiter);
2121

2222
config = requireUncached(__dirname + '/../lib/config');
23-
configObject = LOAD.loadFile(Path.join(__dirname,'/19-config/default.js'));
23+
configObject = LOAD.loadFile(Path.join(__dirname, '19-config/default.js'));
2424
});
2525

2626
it('should not override from the environment variables', function() {
@@ -40,7 +40,7 @@ describe('Testing custom environment variable overrides', function() {
4040
process.env.NODE_CONFIG_DIR = [__dirname + '/19-config'].join(Path.delimiter);
4141

4242
config = requireUncached(__dirname + '/../lib/config');
43-
configObject = LOAD.loadFile(Path.join(__dirname,'/19-config/default.js'));
43+
configObject = LOAD.loadFile(Path.join(__dirname, '19-config/default.js'));
4444
});
4545

4646
it('should not override from the environment variables', function () {

0 commit comments

Comments
 (0)