Tweak to _.bind unit test for Narwhal.

Former-commit-id: 5df60a9d1e46b09253151ab39281c5af0c48544f
This commit is contained in:
John-David Dalton
2012-08-18 03:37:43 -07:00
parent 8b80c5d0b5
commit 2890b92b21

View File

@@ -145,7 +145,7 @@
(function() {
test('should correctly append array arguments to partially applied arguments (test in IE < 9)', function() {
var args,
bound = _.bind(function() { args = slice.call(arguments); }, null, 'a');
bound = _.bind(function() { args = slice.call(arguments); }, {}, 'a');
bound(['b'], 'c');
deepEqual(args, ['a', ['b'], 'c']);