Skip to content

Commit

Permalink
corrected comment
Browse files Browse the repository at this point in the history
  • Loading branch information
5saviahv committed Jan 9, 2021
1 parent 10d7cf2 commit 9f5161b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/api/traversing.js
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ describe('$(...)', function () {
// applies green to pear... AND should not affect apple
$pear.addClass('green');
expect($pear.hasClass('green')).toBe(true); //currently this is true
expect($apple.hasClass('green')).toBe(false); // and this is true!
expect($apple.hasClass('green')).toBe(false); // and this should be false!
});
});
});
Expand Down

0 comments on commit 9f5161b

Please sign in to comment.