diff options
author | Michael Vogt <egon@debian-devbox> | 2013-05-08 18:58:10 +0200 |
---|---|---|
committer | Michael Vogt <egon@debian-devbox> | 2013-05-08 18:58:10 +0200 |
commit | c2994dd971919a4337ea00a7aed522ccc82877c1 (patch) | |
tree | 08b76b573621ddd2b5f7b83d1f394906a70f54dc | |
parent | a63077b8ab63268629767d1848a40272518c90fe (diff) |
fix uri test
-rw-r--r-- | test/libapt/uri_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libapt/uri_test.cc b/test/libapt/uri_test.cc index 16fde503f..8216ade71 100644 --- a/test/libapt/uri_test.cc +++ b/test/libapt/uri_test.cc @@ -113,7 +113,7 @@ int main() { URI U("ftp://foo:b%40r@example.org"); equals("foo", U.User); equals("b@r", U.Password); - equals("ftp://foo:b%40r@example.org", (std::string) U); + equals("ftp://foo:b%40r@example.org/", (std::string) U); } return 0; |