aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-02-17 14:13:39 +0000
committerJohn Resig <jeresig@gmail.com>2009-02-17 14:13:39 +0000
commit7b5cfb78ec1f04cbab9c06e66c858426b6c7dfa7 (patch)
tree25456ec9d4c0b35f270b4b5a867c68225f0cb3ba
parent10ab08de439130ead59d6cc1c31917f2869f923f (diff)
downloadjquery-7b5cfb78ec1f04cbab9c06e66c858426b6c7dfa7.tar.gz
jquery-7b5cfb78ec1f04cbab9c06e66c858426b6c7dfa7.zip
Disabled one of the ordering tests that was taking a while to run.
-rw-r--r--test/unit/selector.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index c4c13601b..646a36fa2 100644
--- a/test/unit/selector.js
+++ b/test/unit/selector.js
@@ -1,7 +1,7 @@
module("selector");
test("element", function() {
- expect(18);
+ expect(17);
reset();
ok( jQuery("*").size() >= 30, "Select all" );
@@ -25,7 +25,7 @@ test("element", function() {
ok( jQuery("#lengthtest input").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' );
// Check for unique-ness and sort order
- isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" );
+ //isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" );
isSet( jQuery("p"), jQuery("p, div p"), "Check for duplicates: p, div p" );
t( "Checking sort order", "h2, h1", ["header", "banner", "userAgent"] );