Clean up whitespace in test/unit/effects.js

This commit is contained in:
Anton M 2011-02-13 23:02:14 +01:00
parent 3930afa3ad
commit dba8c20b4b

View file

@ -53,7 +53,6 @@ test("show()", function() {
ok( pass, "Show with " + name);
});
jQuery.each(speeds, function(name, speed) {
pass = true;
div.hide().show(speed, function() {
@ -152,17 +151,11 @@ test("Persist correct display value", function() {
$span.hide();
$span.fadeIn(100, function() {
equals($span.css("display"), display, "Expecting display: " + display);
$span.fadeOut(100, function () {
equals($span.css("display"), displayNone, "Expecting display: " + displayNone);
$span.fadeIn(100, function() {
equals($span.css("display"), display, "Expecting display: " + display);
start();
});
});