diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/src/UriTests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/UriTests.cpp b/test/src/UriTests.cpp index a0c2787..b17d492 100644 --- a/test/src/UriTests.cpp +++ b/test/src/UriTests.cpp @@ -355,8 +355,8 @@ TEST(UriTests, ParseFromStringHostBarelyLegal) { {"//(/", "("}, {"//;/", ";"}, {"//1.2.3.4/", "1.2.3.4"}, - {"//[v7.:]/", "[v7.:]"}, - {"//[v7.aB]/", "[v7.aB]"}, + {"//[v7.:]/", "v7.:"}, + {"//[v7.aB]/", "v7.aB"}, }; size_t index = 0; for (const auto& testVector : testVectors) { |