Skip to content

Commit 7b5cfb7

Browse files
committed
Disabled one of the ordering tests that was taking a while to run.
1 parent 10ab08d commit 7b5cfb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/selector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module("selector");
22

33
test("element", function() {
4-
expect(18);
4+
expect(17);
55
reset();
66

77
ok( jQuery("*").size() >= 30, "Select all" );
@@ -25,7 +25,7 @@ test("element", function() {
2525
ok( jQuery("#lengthtest input").length, '<input name="length"> cannot be found under IE, see #945' );
2626

2727
// Check for unique-ness and sort order
28-
isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" );
28+
//isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" );
2929
isSet( jQuery("p"), jQuery("p, div p"), "Check for duplicates: p, div p" );
3030

3131
t( "Checking sort order", "h2, h1", ["header", "banner", "userAgent"] );

0 commit comments

Comments
 (0)