From: John Resig Date: Mon, 5 Jan 2009 22:05:59 +0000 (+0000) Subject: The timeout test was waiting for 10 seconds - unnecessary, lowered it to 1 second. X-Git-Tag: 1.3b2~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=60226c8a30df9c1d41093de586e5936e42d44865;p=jquery.git The timeout test was waiting for 10 seconds - unnecessary, lowered it to 1 second. --- diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 677838b54..ce099c125 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -821,7 +821,7 @@ test("ajaxSetup()", function() { test("custom timeout does not set error message when timeout occurs, see #970", function() { stop(); jQuery.ajax({ - url: "data/name.php?wait=10", + url: "data/name.php?wait=1", timeout: 500, error: function(request, status) { ok( status != null, "status shouldn't be null in error handler" );