diff options
author | welch <welch> | 1999-07-02 06:05:11 (GMT) |
---|---|---|
committer | welch <welch> | 1999-07-02 06:05:11 (GMT) |
commit | 4e5672a0727fc2cc1fb70a4674340d1549ac9ca5 (patch) | |
tree | 6bef7541a152623270fbeaf163ac3bf541e0b852 /tests/http.test | |
parent | 87cdcc34eafd1baade26efa5c7b48e5189a3562b (diff) | |
download | tcl-4e5672a0727fc2cc1fb70a4674340d1549ac9ca5.zip tcl-4e5672a0727fc2cc1fb70a4674340d1549ac9ca5.tar.gz tcl-4e5672a0727fc2cc1fb70a4674340d1549ac9ca5.tar.bz2 |
Fixed package version number
Diffstat (limited to 'tests/http.test')
-rw-r--r-- | tests/http.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/http.test b/tests/http.test index 2015c8e..5a1f9e6 100644 --- a/tests/http.test +++ b/tests/http.test @@ -12,19 +12,19 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # -# RCS: @(#) $Id: http.test,v 1.9 1999/06/26 03:54:14 jenn Exp $ +# RCS: @(#) $Id: http.test,v 1.10 1999/07/02 06:05:11 welch Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest namespace import ::tcltest::* } -if {[catch {package require http 2.0}]} { +if {[catch {package require http 2.1}]} { if {[info exist http2]} { - catch {puts "Cannot load http 2.0 package"} + catch {puts "Cannot load http 2.1 package"} return } else { - catch {puts "Running http 2.0 tests in slave interp"} + catch {puts "Running http 2.1 tests in slave interp"} set interp [interp create http2] $interp eval [list set http2 "running"] $interp eval [list source [info script]] |