diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/test/lluri_tut.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/test/lluri_tut.cpp b/linden/indra/test/lluri_tut.cpp index a08fe4e..b49f6dd 100644 --- a/linden/indra/test/lluri_tut.cpp +++ b/linden/indra/test/lluri_tut.cpp | |||
@@ -165,8 +165,8 @@ namespace tut | |||
165 | query["123"] = "12"; | 165 | query["123"] = "12"; |
166 | query["abcd"] = "abc"; | 166 | query["abcd"] = "abc"; |
167 | checkParts(LLURI::buildHTTP("host", path, query), | 167 | checkParts(LLURI::buildHTTP("host", path, query), |
168 | "http", "//host/x/123?123=12&abcd=abc&", | 168 | "http", "//host/x/123?123=12&abcd=abc", |
169 | "host", "/x/123", "123=12&abcd=abc&"); | 169 | "host", "/x/123", "123=12&abcd=abc"); |
170 | } | 170 | } |
171 | 171 | ||
172 | template<> template<> | 172 | template<> template<> |
@@ -191,8 +191,8 @@ namespace tut | |||
191 | query["123"] = "?&*#//"; | 191 | query["123"] = "?&*#//"; |
192 | query["**@&?//"] = "abc"; | 192 | query["**@&?//"] = "abc"; |
193 | checkParts(LLURI::buildHTTP("host", path, query), | 193 | checkParts(LLURI::buildHTTP("host", path, query), |
194 | "http", "//host/x/123?**@&?//=abc&123=?&*#//&", | 194 | "http", "//host/x/123?**@&?//=abc&123=?&*#//", |
195 | "host", "/x/123", "**@&?//=abc&123=?&*#//&"); | 195 | "host", "/x/123", "**@&?//=abc&123=?&*#//"); |
196 | } | 196 | } |
197 | 197 | ||
198 | template<> template<> | 198 | template<> template<> |
@@ -206,8 +206,8 @@ namespace tut | |||
206 | query["123"] = "12"; | 206 | query["123"] = "12"; |
207 | query["abcd"] = "abc"; | 207 | query["abcd"] = "abc"; |
208 | checkParts(LLURI::buildHTTP("hi123*33--}{:portstuffs", path, query), | 208 | checkParts(LLURI::buildHTTP("hi123*33--}{:portstuffs", path, query), |
209 | "http", "//hi123*33--}{:portstuffs/x/123?123=12&abcd=abc&", | 209 | "http", "//hi123*33--}{:portstuffs/x/123?123=12&abcd=abc", |
210 | "hi123*33--}{:portstuffs", "/x/123", "123=12&abcd=abc&"); | 210 | "hi123*33--}{:portstuffs", "/x/123", "123=12&abcd=abc"); |
211 | } | 211 | } |
212 | 212 | ||
213 | template<> template<> | 213 | template<> template<> |