Skip to content

Commit

Permalink
Update number of expected assertions in attribute tests
Browse files Browse the repository at this point in the history
Followup to commit 97dfa0d which
had the side effect to break some attribute unit tests
  • Loading branch information
Anton M committed Oct 19, 2010
1 parent 008e971 commit 4fcfee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ test("addClass(Function)", function() {
});

test("addClass(Function) with incoming value", function() {
expect(41);
expect(45);

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

test("removeClass(Function) with incoming value", function() {
expect(41);
expect(45);

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

0 comments on commit 4fcfee4

Please sign in to comment.