Title: [219667] trunk/Tools
Revision
219667
Author
cdu...@apple.com
Date
2017-07-19 16:59:22 -0700 (Wed, 19 Jul 2017)

Log Message

Unreviewed attempt to fix API test failure after r219663.

The test was hard-coding an exception string and the string has changed slightly
in r219663.

* TestWebKitAPI/Tests/WebKit2Cocoa/WebsiteDataStoreCustomPaths.mm:
(TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (219666 => 219667)


--- trunk/Tools/ChangeLog	2017-07-19 23:57:38 UTC (rev 219666)
+++ trunk/Tools/ChangeLog	2017-07-19 23:59:22 UTC (rev 219667)
@@ -1,3 +1,13 @@
+2017-07-19  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed attempt to fix API test failure after r219663.
+
+        The test was hard-coding an exception string and the string has changed slightly
+        in r219663.
+
+        * TestWebKitAPI/Tests/WebKit2Cocoa/WebsiteDataStoreCustomPaths.mm:
+        (TEST):
+
 2017-07-19  Megan Gardner  <megan_gard...@apple.com>
 
         Don't write file URLs to iOS Pasteboard

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WebsiteDataStoreCustomPaths.mm (219666 => 219667)


--- trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WebsiteDataStoreCustomPaths.mm	2017-07-19 23:57:38 UTC (rev 219666)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WebsiteDataStoreCustomPaths.mm	2017-07-19 23:59:22 UTC (rev 219667)
@@ -115,7 +115,7 @@
     // We expect 4 messages, 1 each for WebSQL, IndexedDB, cookies, and localStorage.
     EXPECT_STREQ([getNextMessage().body UTF8String], "localstorage written");
     EXPECT_STREQ([getNextMessage().body UTF8String], "cookie written");
-    EXPECT_STREQ([getNextMessage().body UTF8String], "Exception: QuotaExceededError (DOM Exception 22): The quota has been exceeded.");
+    EXPECT_STREQ([getNextMessage().body UTF8String], "Exception: QuotaExceededError: The quota has been exceeded.");
     EXPECT_STREQ([getNextMessage().body UTF8String], "Success opening indexed database");
 
     [[[webView configuration] processPool] _syncNetworkProcessCookies];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to