aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-01-05 01:24:14 +0000
committerJohn Resig <jeresig@gmail.com>2009-01-05 01:24:14 +0000
commit4694e537bc911d843524d5f54c65f29c8a60fc5c (patch)
tree461029fccfaa14f84688fabe8372fc3d06113b87 /test/unit
parentcc66e6affea6486cadb0d1514673a410997e11cf (diff)
downloadjquery-4694e537bc911d843524d5f54c65f29c8a60fc5c.tar.gz
jquery-4694e537bc911d843524d5f54c65f29c8a60fc5c.zip
Forgot to merge in some of the new tests from Sizzle.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index 451bd71c7..ae8490ec2 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -1379,7 +1379,7 @@ test("siblings([String])", function() {
isSet( jQuery("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
isSet( jQuery("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" );
isSet( jQuery("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
- isSet( jQuery("#foo").siblings("form, b").get(), q("form", "lengthtest", "testForm", "floatTest"), "Check for multiple filters" );
+ isSet( jQuery("#foo").siblings("form, b").get(), q("form", "lengthtest", "name-tests", "testForm", "floatTest"), "Check for multiple filters" );
var set = document.querySelectorAll ? q("en", "sap", "sndp") : q("sndp", "sap", "en");
isSet( jQuery("#en, #sndp").siblings().get(), set, "Check for unique results from siblings" );
});