From: John Resig Date: Tue, 17 Feb 2009 16:22:41 +0000 (+0000) Subject: Made the div showing a little more explicit - making sure that it doesn't affect... X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=4a4d049df9be6d0df5a331cb08d7b95564bc5ee2;p=jquery.git Made the div showing a little more explicit - making sure that it doesn't affect the fx tests. --- diff --git a/test/unit/core.js b/test/unit/core.js index c5ff6f6..2f775cd 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1523,7 +1523,7 @@ test("prev([String])", function() { test("show()", function() { expect(15); - var pass = true, div = jQuery("div"); + var pass = true, div = jQuery("#main div"); div.show().each(function(){ if ( this.style.display == "none" ) pass = false; });