From 2890b92b21c3dad7b7a1cd64f710109b28c7b187 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 18 Aug 2012 03:37:43 -0700 Subject: [PATCH] Tweak to `_.bind` unit test for Narwhal. Former-commit-id: 5df60a9d1e46b09253151ab39281c5af0c48544f --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']);