diff --git a/test/test.js b/test/test.js index d28b41a32..e8ae615ac 100644 --- a/test/test.js +++ b/test/test.js @@ -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']);