From 64fb8f0c539ba5159ce298d1e769721ba6630e7a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 21 May 2014 16:43:13 -0700 Subject: [PATCH] Remove trailing comma to fix test fails in old IE. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 1aa13d992..aad52e403 100644 --- a/test/test.js +++ b/test/test.js @@ -4707,7 +4707,7 @@ [object1.a[1], object2.a[1], 1], [object1.b, object2.b, 'b'], [object1.b[0], object2.b[0], 0], - [object1.b[1], object2.b[1], 1], + [object1.b[1], object2.b[1], 1] ]; _.isEqual(object1, object2, function() {