aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2011-04-11 11:22:52 -0400
committerjeresig <jeresig@gmail.com>2011-04-11 11:22:52 -0400
commit6591f6dd9d1c86144903f60e5d19e624c5bf6751 (patch)
tree36dd36656a682ae34cc0c7f374bfa848b89a71af /test/unit
parent56ffad2dad138293c132e6ad353111bd2d1f1239 (diff)
downloadjquery-6591f6dd9d1c86144903f60e5d19e624c5bf6751.tar.gz
jquery-6591f6dd9d1c86144903f60e5d19e624c5bf6751.zip
Fix broken merge.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/traversing.js9
1 files changed, 2 insertions, 7 deletions
diff --git a/test/unit/traversing.js b/test/unit/traversing.js
index 6228a0b98..f622082e7 100644
--- a/test/unit/traversing.js
+++ b/test/unit/traversing.js
@@ -223,10 +223,6 @@ test("closest(Array)", function() {
same( jQuery("body").closest(["span","html"]), [{selector:"html", elem:document.documentElement, level:2}], "closest([body, html])" );
});
-<<<<<<< HEAD
-test("not(Selector|undefined)", function() {
- expect(11);
-=======
test("closest(jQuery)", function() {
expect(8);
var $child = jQuery("#nothiddendivchild"),
@@ -243,9 +239,8 @@ test("closest(jQuery)", function() {
ok( $child.closest( $body.add($parent) ).is('#nothiddendiv'), "Closest ancestor retrieved." );
});
-test("not(Selector)", function() {
- expect(7);
->>>>>>> 1a167767305202797cf4c839eb64bd7adfb00182
+test("not(Selector|undefined)", function() {
+ expect(11);
equals( jQuery("#main > p#ap > a").not("#google").length, 2, "not('selector')" );
same( jQuery("p").not(".result").get(), q("firstp", "ap", "sndp", "en", "sap", "first"), "not('.class')" );
same( jQuery("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );