Update number of expected assertions in attribute tests
Followup to commit 97dfa0d5a8
which
had the side effect to break some attribute unit tests
This commit is contained in:
parent
008e971943
commit
4fcfee4369
1 changed files with 2 additions and 2 deletions
|
@ -512,7 +512,7 @@ test("addClass(Function)", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("addClass(Function) with incoming value", function() {
|
test("addClass(Function) with incoming value", function() {
|
||||||
expect(41);
|
expect(45);
|
||||||
|
|
||||||
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");
|
||||||
|
@ -585,7 +585,7 @@ test("removeClass(Function) - simple", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("removeClass(Function) with incoming value", function() {
|
test("removeClass(Function) with incoming value", function() {
|
||||||
expect(41);
|
expect(45);
|
||||||
|
|
||||||
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