]> source.dussan.org Git - jquery.git/commitdiff
Css: Fix the "sanity check" test
authorMichał Gołębiowski <m.goleb@gmail.com>
Mon, 28 Jul 2014 16:46:31 +0000 (18:46 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 28 Jul 2014 16:46:31 +0000 (18:46 +0200)
The #dl element has 0 height so it's now considered hidden regardless
of its width.

test/unit/effects.js

index c49ea9e63f5eaf6acab88328ab00509760146f41..356344477d2c098cf17386f37f1993bc11d32fdb 100644 (file)
@@ -27,7 +27,7 @@ module("effects", {
 
 test("sanity check", function() {
        expect(1);
-       ok( jQuery("#dl:visible, #qunit-fixture:visible, #foo:visible").length === 3, "QUnit state is correct for testing effects" );
+       equal( jQuery("#dl:visible, #qunit-fixture:visible, #foo:visible").length, 2, "QUnit state is correct for testing effects" );
 });
 
 test("show() basic", 2, function() {