From 9cd74e7c9ce25715fcff4cdec7e4673343c04a0a Mon Sep 17 00:00:00 2001 From: shmulik Date: Tue, 20 May 2014 07:32:19 +0300 Subject: [PATCH] Testing the vjs.obj.isArray #1195 Added test for the vjs.obj.isArray method. --- test/unit/lib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/lib.js b/test/unit/lib.js index 97e8175dc8..08d8f69427 100644 --- a/test/unit/lib.js +++ b/test/unit/lib.js @@ -42,7 +42,7 @@ test('should copy an object', function(){ }); test('should check if an object is an Array', function(){ - var arr = ["a", "b", "c"]; + var arr = ['a', 'b', 'c']; ok(vjs.obj.isArray(arr) === true, 'Arr object is an Array'); var obj = {};