diff options
author | John Resig <jeresig@gmail.com> | 2009-09-29 21:40:17 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-09-29 21:40:17 +0000 |
commit | b996026e383eae34dd52824dda5bbe029e2eda51 (patch) | |
tree | 99df9c0d32244a28204ef9d26e3bc47452ce0a1b /test/unit/selector.js | |
parent | b0306cc3a662edf9675cd16081ff0e81b2a0f587 (diff) | |
download | jquery-b996026e383eae34dd52824dda5bbe029e2eda51.tar.gz jquery-b996026e383eae34dd52824dda5bbe029e2eda51.zip |
Adapted the jQuery test suite to handle the toolbar moving inline.
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r-- | test/unit/selector.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index dc27adcc4..37da3f3fa 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -361,7 +361,7 @@ test("pseudo (:) selectors", function() { t( "Position Less Than", "p:lt(3)", ["firstp","ap","sndp"] ); t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] ); t( "Is Visible", "#form input:visible", [] ); - t( "Is Visible", "div:visible:not(.qunit-testrunner-toolbar):lt(2)", ["nothiddendiv", "nothiddendivchild"] ); + t( "Is Visible", "div:visible:not(#qunit-testrunner-toolbar):lt(2)", ["nothiddendiv", "nothiddendivchild"] ); t( "Is Hidden", "#form input:hidden", ["text1","text2","radio1","radio2","check1","check2","hidden1","hidden2","name","search"] ); t( "Is Hidden", "#main:hidden", ["main"] ); t( "Is Hidden", "#dl:hidden", ["dl"] ); |