Skip to content

Commit

Permalink
fix(jshint)
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Aug 24, 2015
1 parent eeb67bf commit 5c8c23e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var EVENT_FALLBACK = 'env:fallback';
module.exports = function envFactory() {
var em = new EventEmitter();

var getOrDie = getOrDieFactory(function (fullKeyName, aliases) {
var getOrDie = getOrDieFactory(function (fullKeyName) {
throw new CommonEnvGetOrDieException(fullKeyName);
});

Expand Down
2 changes: 1 addition & 1 deletion test/getOrElseAll.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ describe('.getOrElseAll', function () {
describe('fail-fast behaviour', function () {
it('should throw an error if $default is not defined and that no environment variables was specified', function () {
t.throws(function () {
var config = env.getOrElseAll({
env.getOrElseAll({
thisIsA: {
missing: [{
sadVar: {
Expand Down

0 comments on commit 5c8c23e

Please sign in to comment.