From: Michael Vogt Date: Wed, 8 May 2013 16:58:10 +0000 (+0200) Subject: fix uri test X-Git-Tag: 0.9.8~1 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/c2994dd971919a4337ea00a7aed522ccc82877c1?ds=inline;hp=--cc fix uri test --- c2994dd971919a4337ea00a7aed522ccc82877c1 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;