Skip to content

Commit

Permalink
fixed the env test, everything is fine
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 13, 2013
1 parent d1ff82a commit a45897f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test('special shell parameters', function (t) {

chars.forEach(function (c) {
var env = {};
env['$' + c] = 'xxx';
env[c] = 'xxx';
t.same(parse('a $' + c + ' c', env), [ 'a', 'xxx', 'c' ]);
});
});

0 comments on commit a45897f

Please sign in to comment.