Fix a failing subclass test due to a change in master

This commit is contained in:
wycats 2011-01-14 11:17:32 -05:00
parent 3716f2d041
commit fa45f25d1c

View file

@ -1081,7 +1081,7 @@ test("jQuery.subclass", function(){
'body', 'body',
'html, body', 'html, body',
'<div></div>' '<div></div>'
] ];
methods = [ // all methods that return a new jQuery instance methods = [ // all methods that return a new jQuery instance
['eq', 1], ['eq', 1],
@ -1090,16 +1090,16 @@ test("jQuery.subclass", function(){
['has'], ['has'],
['closest', 'div'], ['closest', 'div'],
['filter', document], ['filter', document],
['find'] ['find', 'div']
] ];
contexts = [undefined, document, jQueryDocument]; contexts = [undefined, document, jQueryDocument];
jQuery.each(selectors, function(i, selector){ jQuery.each(selectors, function(i, selector){
jQuery.each(methods, function(){ jQuery.each(methods, function(){
method = this[0] method = this[0];
arg = this[1] arg = this[1];
jQuery.each(contexts, function(i, context){ jQuery.each(contexts, function(i, context){