From 794eedd6f0779a19526fc9d96780fe364e92f1ff Mon Sep 17 00:00:00 2001 From: hobbs Date: Fri, 2 Jun 2000 23:43:54 +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 c18a3c9..9ddb401 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.20 2000/06/02 23:14:47 hobbs Exp $ +# RCS: @(#) $Id: http.test,v 1.21 2000/06/02 23:43:54 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