aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/ajax.js
diff options
context:
space:
mode:
authorjaubourg <j@ubourg.net>2011-01-19 18:44:21 +0100
committerjaubourg <j@ubourg.net>2011-01-19 18:44:21 +0100
commit96b00a493522fd3995f0752803da2c13bbf21755 (patch)
tree911004c8f7f80e72f8e5a5787778fd0a651f395a /test/unit/ajax.js
parent44f3a1b405e158615d9f2fca3238ccb12f9fa895 (diff)
downloadjquery-96b00a493522fd3995f0752803da2c13bbf21755.tar.gz
jquery-96b00a493522fd3995f0752803da2c13bbf21755.zip
Moves active counter test after all other ajax tests where it should be.
Diffstat (limited to 'test/unit/ajax.js')
-rw-r--r--test/unit/ajax.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index 3f672ae04..52b059755 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -1857,10 +1857,6 @@ test("jQuery ajax - atom+xml", function() {
});
-test("jQuery.ajax - active counter", function() {
- ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );
-});
-
test( "jQuery.ajax - Location object as url (#7531)", 1, function () {
var success = false;
try {
@@ -1942,6 +1938,10 @@ test( "jQuery.ajax - statusCode" , function() {
});
+test("jQuery.ajax - active counter", function() {
+ ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active );
+});
+
}
//} \ No newline at end of file