From dfeb8140facfe840e4c16768b54435e04c29851b Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 29 Sep 2009 21:22:35 +0000 Subject: [PATCH] Fixed the q() method to use same instead of isSet. --- test/data/testinit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/data/testinit.js b/test/data/testinit.js index 94d18f3..a66f71d 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -24,13 +24,13 @@ function q() { r' */ function t(a,b,c) { - var f = jQuery(b), s = ""; + var f = jQuery(b).get(), s = ""; for ( var i = 0; i < f.length; i++ ) { s += (s && ",") + '"' + f[i].id + '"'; } - isSet(f, q.apply(q,c), a + " (" + b + ")"); + same(f, q.apply(q,c), a + " (" + b + ")"); } /** -- 1.7.10.4