diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2012-12-16 12:37:20 -0500 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2012-12-16 13:09:40 -0500 |
commit | 2ea7876c2510a7d4a609561648c34edea0aeb8d5 (patch) | |
tree | e28ca8b3bdb6264134819746af73a8fbc3cab79e /test/data | |
parent | 06f46dad9307c17d4aad6add2d3a9b0b2d3b451a (diff) | |
download | jquery-2ea7876c2510a7d4a609561648c34edea0aeb8d5.tar.gz jquery-2ea7876c2510a7d4a609561648c34edea0aeb8d5.zip |
Fix #13064: better test fixture cleanup. Close gh-1075.
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/testrunner.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/testrunner.js b/test/data/testrunner.js index 3f6398404..f7aca724a 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -317,8 +317,8 @@ var Globals = (function() { }; QUnit.done(function() { - // Remove out own fixtures outside #qunit-fixture - jQuery( "#nothiddendiv, #loadediframe, #dl" ).remove(); + // Remove our own fixtures outside #qunit-fixture + jQuery("#qunit ~ *").remove(); }); // jQuery-specific QUnit.reset |