Fixed the number of expected class tests from a previous commit. Thanks to @bugbegone in 1f667aa035
for the catch.
This commit is contained in:
parent
0b4b3ee8a5
commit
a32f4d7b6c
1 changed files with 2 additions and 2 deletions
|
@ -473,7 +473,7 @@ test("addClass(Function)", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("addClass(Function) with incoming value", function() {
|
test("addClass(Function) with incoming value", function() {
|
||||||
expect(39);
|
expect(41);
|
||||||
|
|
||||||
var div = jQuery("div"), old = div.map(function(){
|
var div = jQuery("div"), old = div.map(function(){
|
||||||
return jQuery(this).attr("class");
|
return jQuery(this).attr("class");
|
||||||
|
@ -546,7 +546,7 @@ test("removeClass(Function) - simple", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("removeClass(Function) with incoming value", function() {
|
test("removeClass(Function) with incoming value", function() {
|
||||||
expect(39);
|
expect(41);
|
||||||
|
|
||||||
var $divs = jQuery('div').addClass("test"), old = $divs.map(function(){
|
var $divs = jQuery('div').addClass("test"), old = $divs.map(function(){
|
||||||
return jQuery(this).attr("class");
|
return jQuery(this).attr("class");
|
||||||
|
|
Loading…
Add table
Reference in a new issue