diff options
author | jaubourg <j@ubourg.net> | 2012-11-26 12:09:42 +0100 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2012-11-26 12:09:42 +0100 |
commit | 512b826f9f14e30b715b943547b97aaaf1099f4e (patch) | |
tree | 2ed0c6bad3084318e974be8be3d34643033dd801 | |
parent | 603e70b90e7b1e848d04226f26668eaf77874bc7 (diff) | |
download | jquery-512b826f9f14e30b715b943547b97aaaf1099f4e.tar.gz jquery-512b826f9f14e30b715b943547b97aaaf1099f4e.zip |
Removes unnecessary closure and apply
-rw-r--r-- | test/unit/ajax.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js index b9cff112f..4bb9c55d6 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -7,9 +7,7 @@ module( "ajax", { return callback; }; }, - teardown: function() { - moduleTeardown.apply( this, arguments ); - } + teardown: moduleTeardown }); (function() { |