From: John Resig Date: Thu, 21 Aug 2008 17:08:50 +0000 (+0000) Subject: A test was using the old / child selector syntax - updating to the new style. X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=0865b073f81513056f46296cd2a236ab2ca35703;p=jquery.git A test was using the old / child selector syntax - updating to the new style. --- 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" );