Fixes a race condition in JSONP Local test.

This commit is contained in:
jaubourg 2011-01-10 00:52:20 +01:00
parent 012f0c3b4b
commit 84319aa4a3

View file

@ -1084,7 +1084,7 @@ test("jQuery.ajax() - JSONP, Local", function() {
expect(10);
var count = 0;
function plus(){ if ( ++count == 9 ) start(); }
function plus(){ if ( ++count == 10 ) start(); }
stop();