aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/testinit.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-09-29 21:22:35 +0000
committerJohn Resig <jeresig@gmail.com>2009-09-29 21:22:35 +0000
commitdfeb8140facfe840e4c16768b54435e04c29851b (patch)
tree533d03b41a98d0ea62b8bb09fd3d6675bc01cad6 /test/data/testinit.js
parent4bda398e6aa63082c41bb0d06fcc184acd7f76c5 (diff)
downloadjquery-dfeb8140facfe840e4c16768b54435e04c29851b.tar.gz
jquery-dfeb8140facfe840e4c16768b54435e04c29851b.zip
Fixed the q() method to use same instead of isSet.
Diffstat (limited to 'test/data/testinit.js')
-rw-r--r--test/data/testinit.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/testinit.js b/test/data/testinit.js
index 94d18f3b2..a66f71d25 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 + ")");
}
/**