From 4a4d049df9be6d0df5a331cb08d7b95564bc5ee2 Mon Sep 17 00:00:00 2001
From: John Resig <jeresig@gmail.com>
Date: Tue, 17 Feb 2009 16:22:41 +0000
Subject: [PATCH] Made the div showing a little more explicit - making sure
 that it doesn't affect the fx tests.

---
 test/unit/core.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 	});
-- 
1.7.10.4