Skip to content

Commit

Permalink
Testing the vjs.obj.isArray videojs#1195
Browse files Browse the repository at this point in the history
Added test for the vjs.obj.isArray method.
  • Loading branch information
shmulik committed May 20, 2014
1 parent f3089bb commit 9cd74e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};
Expand Down

0 comments on commit 9cd74e7

Please sign in to comment.