Modified: trunk/Tools/ChangeLog (205780 => 205781)
--- trunk/Tools/ChangeLog 2016-09-10 00:59:00 UTC (rev 205780)
+++ trunk/Tools/ChangeLog 2016-09-10 01:08:23 UTC (rev 205781)
@@ -1,3 +1,12 @@
+2016-09-09 Alex Christensen <achristen...@webkit.org>
+
+ Fix API tests after r205774.
+ https://bugs.webkit.org/show_bug.cgi?id=161820
+
+ * TestWebKitAPI/Tests/WebCore/URLParser.cpp:
+ (TestWebKitAPI::TEST_F):
+ I had committed the wrong expected path in one case. The functionality is correct.
+
2016-09-09 Michael Saboff <msab...@apple.com>
Unreviewed, rolling r205759 back in with a fix.
Modified: trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp (205780 => 205781)
--- trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp 2016-09-10 00:59:00 UTC (rev 205780)
+++ trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp 2016-09-10 01:08:23 UTC (rev 205781)
@@ -446,8 +446,8 @@
{"file", "", "", "", 0, "/pAtH", "", "", "file:///pAtH"},
{"file", "", "", "", 0, "pAtH", "", "", "file://pAtH"});
checkURLDifferences("file:pAtH/",
- {"file", "", "", "", 0, "/pAtH/", "", "", "file:///pAtH"},
- {"file", "", "", "", 0, "pAtH/", "", "", "file://pAtH"});
+ {"file", "", "", "", 0, "/pAtH/", "", "", "file:///pAtH/"},
+ {"file", "", "", "", 0, "pAtH/", "", "", "file://pAtH/"});
// FIXME: Fix and test incomplete percent encoded characters in the middle and end of the input string.
// FIXME: Fix and test percent encoded upper case characters in the host.