From: Vadim Zeitlin Date: Mon, 29 Apr 2013 23:00:57 +0000 (+0000) Subject: Trying to blindly fix WebTestCase unit test failure. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0cd8ce0de1e00ab921731d2aaf04c9e925c6f5ac Trying to blindly fix WebTestCase unit test failure. Navigate to about:blank initially, not "about:". git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73879 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/controls/webtest.cpp b/tests/controls/webtest.cpp index 533f1da461..6e7bd6da4c 100644 --- a/tests/controls/webtest.cpp +++ b/tests/controls/webtest.cpp @@ -80,7 +80,7 @@ void WebTestCase::setUp() m_browser = wxWebView::New(wxTheApp->GetTopWindow(), wxID_ANY); m_loaded = new EventCounter(m_browser, wxEVT_WEBVIEW_LOADED); - m_browser->LoadURL("about:"); + m_browser->LoadURL("about:blank"); ENSURE_LOADED; }