diff options
author | hobbs <hobbs> | 2000-06-02 23:43:54 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-06-02 23:43:54 (GMT) |
commit | 794eedd6f0779a19526fc9d96780fe364e92f1ff (patch) | |
tree | 018a6391846e690850e82389201f89007c23f783 /tests/http.test | |
parent | 6c22497d0dc33e940aaaf046a4b9095230f3fdfc (diff) | |
download | tcl-794eedd6f0779a19526fc9d96780fe364e92f1ff.zip tcl-794eedd6f0779a19526fc9d96780fe364e92f1ff.tar.gz tcl-794eedd6f0779a19526fc9d96780fe364e92f1ff.tar.bz2 |
reduced unnecessary iterations in http-3.13
Diffstat (limited to 'tests/http.test')
-rw-r--r-- | tests/http.test | 6 |
1 files 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 |