+#include <config.h>
+
#include <apt-pkg/strutl.h>
+#include <string>
+
#include "assert.h"
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;