Moves active counter test after all other ajax tests where it should be.

This commit is contained in:
jaubourg 2011-01-19 18:44:21 +01:00
parent 44f3a1b405
commit 96b00a4935

View file

@ -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 );
});
}
//}