Skip to content

Commit da199bd

Browse files
fix linting issues
Co-authored-by: Jason Nguyen <jason-nguyen@pluralsight.com> Co-authored-by: Bret Hubbard <bret-hubbard@pluralsight.com
1 parent 1eb4411 commit da199bd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/unit.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
const sinon = require('sinon');
23
const sinonChai = require('sinon-chai');
34
const chai = require('chai');
@@ -96,7 +97,7 @@ describe('node-vault', () => {
9697
defaults: defaultsStub,
9798
},
9899
};
99-
vault = index(vaultConfig);
100+
const vault = index(vaultConfig);
100101
vault.endpoint.should.equal('http://localhost:8200');
101102
});
102103

@@ -108,9 +109,9 @@ describe('node-vault', () => {
108109
defaults: defaultsStub,
109110
},
110111
};
111-
vault = index(vaultConfig);
112+
const vault = index(vaultConfig);
112113
vault.endpoint.should.equal('http://localhost:8200');
113-
})
114+
});
114115
});
115116

116117
describe('client', () => {

0 commit comments

Comments
 (0)