Title: [160071] trunk/Tools
Revision
160071
Author
[email protected]
Date
2013-12-03 22:50:54 -0800 (Tue, 03 Dec 2013)

Log Message

Fixed a test timing out after r160040.

* TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm:
(-[SimpleLoadFailDelegate browsingContextController:didFailProvisionalLoadWithError:]):
Updated for the delegate method rename.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (160070 => 160071)


--- trunk/Tools/ChangeLog	2013-12-04 05:33:24 UTC (rev 160070)
+++ trunk/Tools/ChangeLog	2013-12-04 06:50:54 UTC (rev 160071)
@@ -1,3 +1,11 @@
+2013-12-03  Dan Bernstein  <[email protected]>
+
+        Fixed a test timing out after r160040.
+
+        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm:
+        (-[SimpleLoadFailDelegate browsingContextController:didFailProvisionalLoadWithError:]):
+        Updated for the delegate method rename.
+
 2013-12-03  Filip Pizlo  <[email protected]>
 
         REGRESSION: repro scripts disappear when you rerun tests

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm (160070 => 160071)


--- trunk/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm	2013-12-04 05:33:24 UTC (rev 160070)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm	2013-12-04 06:50:54 UTC (rev 160071)
@@ -200,7 +200,7 @@
     return self;
 }
 
-- (void)browsingContextControllerDidFailProvisionalLoad:(WKBrowsingContextController *)sender withError:(NSError *)error
+- (void)browsingContextController:(WKBrowsingContextController *)sender didFailProvisionalLoadWithError:(NSError *)error
 {
     EXPECT_EQ(-1100, error.code);
     EXPECT_WK_STREQ(NSURLErrorDomain, error.domain);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to