소스 검색

fix uri test

Michael Vogt 13 년 전
부모
커밋
c2994dd971
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/libapt/uri_test.cc

+ 1 - 1
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;