From a43e59c36a2e9854f4de5e42e7fb5f138de44f8f Mon Sep 17 00:00:00 2001 From: hobbs Date: Fri, 2 Jun 2000 23:44:06 +0000 Subject: reduced unnecessary iterations in http-3.13 --- tests/http.test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/http.test b/tests/http.test index 275b627..4549960 100644 --- a/tests/http.test +++ b/tests/http.test @@ -12,7 +12,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # -# RCS: @(#) $Id: http.test,v 1.19.2.1 2000/05/31 01:28:57 sandeep Exp $ +# RCS: @(#) $Id: http.test,v 1.19.2.2 2000/06/02 23:44:07 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -292,8 +292,8 @@ test http-3.12 {http::geturl querychannel with aborted request} {nonPortable} { test http-3.13 {http::geturl socket leak test} { set chanCount [llength [file channels]] - for {set i 0} {$i<200} {incr i} { - catch {http::geturl $badurl -timeout 10000} + for {set i 0} {$i < 3} {incr i} { + catch {http::geturl $badurl -timeout 5000} } # No extra channels should be taken -- cgit v0.12