diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-10-03 13:34:30 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-10-03 13:34:30 (GMT) |
commit | ab7c4df02b91f86fd42936b1c44f131bf042fb3f (patch) | |
tree | 9c39f7a0b3f113c68393d56cb15a4e054d19cd2e /tests/http.test | |
parent | 28533d82ea038848d80fe995d9a992401a77945f (diff) | |
download | tcl-ab7c4df02b91f86fd42936b1c44f131bf042fb3f.zip tcl-ab7c4df02b91f86fd42936b1c44f131bf042fb3f.tar.gz tcl-ab7c4df02b91f86fd42936b1c44f131bf042fb3f.tar.bz2 |
[info exist]->[info exists]. [Bug 602566]
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 9b4b4d1..9d33802 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.30 2002/09/02 19:27:27 hobbs Exp $ +# RCS: @(#) $Id: http.test,v 1.31 2002/10/03 13:34:32 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -20,7 +20,7 @@ if {[lsearch [namespace children] ::tcltest] == -1} { } if {[catch {package require http 2} version]} { - if {[info exist http2]} { + if {[info exists http2]} { catch {puts "Cannot load http 2.* package"} return } else { @@ -494,7 +494,7 @@ if {[info exists httpthread]} { close $listen } -if {[info exist removeHttpd]} { +if {[info exists removeHttpd]} { removeFile $httpdFile } |