remove and detach unit tests were not cleaning up, causing selector tests to fail
authorBrandon Aaron <brandon.aaron@gmail.com>
Mon, 14 Sep 2009 20:45:58 +0000 (20:45 +0000)
committerBrandon Aaron <brandon.aaron@gmail.com>
Mon, 14 Sep 2009 20:45:58 +0000 (20:45 +0000)
test/unit/manipulation.js

index c942bfd..49d717f 100644 (file)
@@ -706,9 +706,11 @@ var testRemove = function(method) {
 
        var count = 0;
        var first = jQuery("#ap").children(":first");
-       first.click(function() { count++ })[method]().appendTo("body").click();
-
+       var cleanUp = first.click(function() { count++ })[method]().appendTo("body").click();
+       
        equals( method == "remove" ? 0 : 1, count );
+       
+       cleanUp.detach();
 };
 
 test("remove()", function() {