Skip to content

Commit

Permalink
fix(lint)
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Jan 14, 2015
1 parent 1afea92 commit eae047d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/common-env.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*jshint maxcomplexity: 7*/
/*global process, module */
'use strict';
var PRINTED = Object.create(null);
Expand Down
2 changes: 1 addition & 1 deletion test/env.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit eae047d

Please sign in to comment.