From ec462a33af41e9a2291599119e3ae74fc16e6a32 Mon Sep 17 00:00:00 2001 From: jeresig Date: Wed, 13 Oct 2010 00:07:52 -0400 Subject: [PATCH] Fix broken Ajax test after recent revert to jQuery.ajax namespace. --- test/unit/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 2ded127..5704d73 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -1318,7 +1318,7 @@ test("jQuery.ajax - Etag support", function() { }); test("jQuery.ajax - active counter", function() { - ok( jQuery.ajax.active == 0, "ajax active counter should be zero: " + jQuery.ajax.active ); + ok( jQuery.active == 0, "ajax active counter should be zero: " + jQuery.active ); }); -- 1.7.10.4