From 60226c8a30df9c1d41093de586e5936e42d44865 Mon Sep 17 00:00:00 2001 From: John Resig Date: Mon, 5 Jan 2009 22:05:59 +0000 Subject: [PATCH] The timeout test was waiting for 10 seconds - unnecessary, lowered it to 1 second. --- 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 677838b..ce099c1 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" ); -- 1.7.10.4