diff options
author | Dan Winship <danw@gnome.org> | 2010-02-14 22:38:41 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2010-02-14 22:38:41 -0500 |
commit | 0375fe59093058d4987af5d74a53a283c3651000 (patch) | |
tree | b32a40c472274d007fd5f7ba2c4cfb374539950e /tests/uri-parsing.c | |
parent | a0694f937b2d30a9c92ddd2c7d6c4d2053b4d385 (diff) | |
download | libsoup-0375fe59093058d4987af5d74a53a283c3651000.tar.gz libsoup-0375fe59093058d4987af5d74a53a283c3651000.tar.bz2 libsoup-0375fe59093058d4987af5d74a53a283c3651000.zip |
[SoupURI] additional fixes to previous commit
Diffstat (limited to 'tests/uri-parsing.c')
-rw-r--r-- | tests/uri-parsing.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/uri-parsing.c b/tests/uri-parsing.c index 49a92a69..c5aa6b59 100644 --- a/tests/uri-parsing.c +++ b/tests/uri-parsing.c @@ -59,6 +59,8 @@ static struct { "http://host/path%20with%20spaces" }, { " http://host/path", "http://host/path" }, { "http://host/path ", "http://host/path" }, + { "http://host ", "http://host/" }, + { "http://host:999 ", "http://host:999/" }, { "http://host/pa\nth", "http://host/path" }, { "http:\r\n//host/path", "http://host/path" }, { "http://\thost/path", "http://host/path" }, |