summaryrefslogtreecommitdiffstats
path: root/tests/http.test
diff options
context:
space:
mode:
authorhershey <hershey>1999-06-08 18:06:51 (GMT)
committerhershey <hershey>1999-06-08 18:06:51 (GMT)
commit7f00886c12a5e392b7868360d16f0dda7fd1c8c9 (patch)
treecf8058ad6da11e50238ce7c95a83eefdef94152b /tests/http.test
parent0e53e351cd3c0bdf51b84e459262c47f913c9a97 (diff)
downloadtcl-7f00886c12a5e392b7868360d16f0dda7fd1c8c9.zip
tcl-7f00886c12a5e392b7868360d16f0dda7fd1c8c9.tar.gz
tcl-7f00886c12a5e392b7868360d16f0dda7fd1c8c9.tar.bz2
added code to unset the "data" array so tests that follow can use a scalar
data var w/o having to unset it first.
Diffstat (limited to 'tests/http.test')
-rw-r--r--tests/http.test7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/http.test b/tests/http.test
index c6ead8a..41ffd0b 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.7 1999/05/18 22:59:17 hershey Exp $
+# RCS: @(#) $Id: http.test,v 1.8 1999/06/08 18:06:51 hershey Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
source [file join [pwd] [file dirname [info script]] defs.tcl]
@@ -300,8 +300,9 @@ test http-6.1 {http::ProxyRequired} {
</body></html>"
# cleanup
-unset url
-unset port
+catch {unset url}
+catch {unset port}
+catch {unset data}
if {[info exists httpthread]} {
testthread send -async $httpthread {
testthread exit