From 0865b073f81513056f46296cd2a236ab2ca35703 Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 21 Aug 2008 17:08:50 +0000 Subject: [PATCH] A test was using the old / child selector syntax - updating to the new style. --- test/unit/selector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/selector.js b/test/unit/selector.js index d4830a8..98fa3ca 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -64,7 +64,7 @@ test("id", function() { t( "ID Selector, not a child ID", "#form > #option1a", [] ); t( "All Children of ID", "#foo > *", ["sndp", "en", "sap"] ); - t( "All Children of ID with no children", "#firstUL/*", [] ); + t( "All Children of ID with no children", "#firstUL > *", [] ); jQuery('tName1 AtName2 A
tName1 Div
').appendTo('#main'); equals( jQuery("#tName1")[0].id, 'tName1', "ID selector with same value for a name attribute" ); -- 1.7.10.4