]> source.dussan.org Git - jquery.git/commitdiff
Css: Fix the "sanity check" test 1634/head 1644/head
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:47:19 +0000 (18:47 +0200)
The #dl element has 0 height so it's now considered hidden regardless
of its width.

(cherry-picked from 995f70777ac6c0f988a44807ef1399e73937b2ee)

test/unit/effects.js

index 8e1f914cf3ebb908732934c15f424bc403814249..deb3a0331a87dac697dd06e4b35c8c03ae1729d7 100644 (file)
@@ -25,7 +25,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() {