From da0d3dc2ad7c3339c9b31b3c54e16d5fd8902b2f Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Mon, 2 Jul 2018 22:44:39 -0700 Subject: Fix bug in test Fix assumption that the path of an absolute URI is considered to have a relative path if the path is empty. --- test/src/UriTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/src/UriTests.cpp') diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp index 943c25c..fcd6309 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -152,7 +152,7 @@ TEST(UriTests, ParseFromStringRelativeVsNonRelativePaths) { }; const std::vector< TestVector > testVectors{ {"http://www.example.com/", false}, - {"http://www.example.com", true}, + {"http://www.example.com", false}, {"/", false}, {"foo", true}, -- cgit v1.2.3