diff --git a/lib/common-env.js b/lib/common-env.js index 30da028..e4568ca 100644 --- a/lib/common-env.js +++ b/lib/common-env.js @@ -1,3 +1,4 @@ +/*jshint maxcomplexity: 7*/ /*global process, module */ 'use strict'; var PRINTED = Object.create(null); diff --git a/test/env.test.js b/test/env.test.js index b42ec23..72abd0a 100644 --- a/test/env.test.js +++ b/test/env.test.js @@ -32,7 +32,7 @@ describe('env', function () { it('should not display values in log', function () { process.env.PASSWORD = 'CLEAR_TEXT_PASSWORD'; - var config = env.getOrElseAll({ + env.getOrElseAll({ password: 'default clear text password' }); t.notInclude(logger.calls[0], process.env.PASSWORD);