diff options
author | hobbs <hobbs> | 2006-09-16 00:19:41 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2006-09-16 00:19:41 (GMT) |
commit | d7ecf2f735c34c837b464e3fc4af74c48efe1a2a (patch) | |
tree | 4341aa48221d56bd965cbb502f2ad12ee038c856 /tests/http.test | |
parent | c5e2ae09424655cfb0a69b301ee78dcda43b63f4 (diff) | |
download | tcl-d7ecf2f735c34c837b464e3fc4af74c48efe1a2a.zip tcl-d7ecf2f735c34c837b464e3fc4af74c48efe1a2a.tar.gz tcl-d7ecf2f735c34c837b464e3fc4af74c48efe1a2a.tar.bz2 |
* library/http/http.tcl: Change " " -> "+" url encoding mapping
* library/http/pkgIndex.tcl: to " " -> "%20" as per RFC 3986.
* tests/http.test (http-5.1): bump http to 2.5.3
Diffstat (limited to 'tests/http.test')
-rw-r--r-- | tests/http.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/http.test b/tests/http.test index b7d618c..1e62f9d 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.41 2005/11/18 14:51:02 dkf Exp $ +# RCS: @(#) $Id: http.test,v 1.42 2006/09/16 00:19:42 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -463,7 +463,7 @@ test http-4.15 {http::Event} { test http-5.1 {http::formatQuery} { http::formatQuery name1 value1 name2 "value two" -} {name1=value1&name2=value+two} +} {name1=value1&name2=value%20two} # test http-5.2 obsoleted by 5.4 and 5.5 with http 2.5 test http-5.3 {http::formatQuery} { http::formatQuery lines "line1\nline2\nline3" |