Skip to content

Commit 4fcfee4

Browse files
author
Anton M
committed
Update number of expected assertions in attribute tests
Followup to commit 97dfa0d which had the side effect to break some attribute unit tests
1 parent 008e971 commit 4fcfee4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/attributes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ test("addClass(Function)", function() {
512512
});
513513

514514
test("addClass(Function) with incoming value", function() {
515-
expect(41);
515+
expect(45);
516516

517517
var div = jQuery("div"), old = div.map(function(){
518518
return jQuery(this).attr("class");
@@ -585,7 +585,7 @@ test("removeClass(Function) - simple", function() {
585585
});
586586

587587
test("removeClass(Function) with incoming value", function() {
588-
expect(41);
588+
expect(45);
589589

590590
var $divs = jQuery('div').addClass("test"), old = $divs.map(function(){
591591
return jQuery(this).attr("class");

0 commit comments

Comments
 (0)