diff options
author | dgp <dgp@users.sourceforge.net> | 2005-10-08 13:44:37 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-10-08 13:44:37 (GMT) |
commit | ba7edb67f66f3ae93d7c0ba267d77f5fbcf285f4 (patch) | |
tree | 11e807013d92abd0901f25d1b5377d6b4276d8a8 /tests/http.test | |
parent | 9257d59dfb725123d0783a0584e0af27eb45c998 (diff) | |
download | tcl-ba7edb67f66f3ae93d7c0ba267d77f5fbcf285f4.zip tcl-ba7edb67f66f3ae93d7c0ba267d77f5fbcf285f4.tar.gz tcl-ba7edb67f66f3ae93d7c0ba267d77f5fbcf285f4.tar.bz2 |
merge updates from HEAD
kennykb_numerics_branch
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 86811f4..c8de5c3 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.38 2004/05/25 22:56:33 hobbs Exp $ +# RCS: @(#) $Id: http.test,v 1.38.2.1 2005/10/08 13:44:39 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -483,7 +483,7 @@ test http-5.3 {http::formatQuery} { test http-5.4 {http::formatQuery} { http::formatQuery name1 ~bwelch name2 \xa1\xa2\xa2 -} {name1=%7ebwelch&name2=%c2%a1%c2%a2%c2%a2} +} {name1=~bwelch&name2=%c2%a1%c2%a2%c2%a2} test http-5.5 {http::formatQuery} { set enc [http::config -urlencoding] @@ -491,7 +491,7 @@ test http-5.5 {http::formatQuery} { set res [http::formatQuery name1 ~bwelch name2 \xa1\xa2\xa2] http::config -urlencoding $enc set res -} {name1=%7ebwelch&name2=%a1%a2%a2} +} {name1=~bwelch&name2=%a1%a2%a2} test http-6.1 {http::ProxyRequired} { http::config -proxyhost [info hostname] -proxyport $port |