]> git.saurik.com Git - apt.git/blobdiff - test/libapt/uri_test.cc
fix test/integration/test-apt-helper
[apt.git] / test / libapt / uri_test.cc
index 16fde503fbb9b87ec6f27c63b1e2a74b135a0893..6559f1390183a69fde67fee774f08e812a6e9314 100644 (file)
@@ -1,5 +1,9 @@
+#include <config.h>
+
 #include <apt-pkg/strutl.h>
 
+#include <string>
+
 #include "assert.h"
 
 int main() {
@@ -113,7 +117,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;