From bd62926a3fd72d25839110e3498da99d062e559d Mon Sep 17 00:00:00 2001 From: Oliver Kahrmann Date: Sat, 23 Sep 2017 00:30:03 +0200 Subject: [PATCH] Fix example_test due to changed URL redirect Against all odds, status.github.com changed, breaking the example test output again. --- webkit2/example_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webkit2/example_test.go b/webkit2/example_test.go index 63138ee..aa51959 100644 --- a/webkit2/example_test.go +++ b/webkit2/example_test.go @@ -39,7 +39,7 @@ func Example() { }) glib.IdleAdd(func() bool { - webView.LoadURI("https://status.github.com/") + webView.LoadURI("https://status.github.com/messages") return false }) @@ -48,6 +48,6 @@ func Example() { // output: // Load finished. // Title: "GitHub System Status" - // URI: https://status.github.com/ + // URI: https://status.github.com/messages // Hostname (from JavaScript): "status.github.com" }