fix jquery/jquery-tests.ts compile error

This commit is contained in:
vvakame
2015-01-16 23:40:20 +09:00
parent 1eedca86ee
commit a1ed02f920
+1 -1
View File
@@ -3043,7 +3043,7 @@ function test_merge() {
var first = ['a', 'b', 'c'];
var second = ['d', 'e', 'f'];
$.merge($.merge([], first), second);
var z = $.merge([0, 1, 2], ['a', 'b', 'c']);
var z = $.merge<any>([0, 1, 2], ['a', 'b', 'c']);
}
function test_prop() {