git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bda398
)
Fixed the q() method to use same instead of isSet.
author
John Resig
<jeresig@gmail.com>
Tue, 29 Sep 2009 21:22:35 +0000
(21:22 +0000)
committer
John Resig
<jeresig@gmail.com>
Tue, 29 Sep 2009 21:22:35 +0000
(21:22 +0000)
test/data/testinit.js
patch
|
blob
|
history
diff --git
a/test/data/testinit.js
b/test/data/testinit.js
index
94d18f3
..
a66f71d
100644
(file)
--- 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 + ")");
}
/**