Increase timeout for WindowTestCase::FocusEvent()

The default 100ms doesn't seem to be enough when this test runs under
buildbot.
This commit is contained in:
Vadim Zeitlin 2017-11-14 00:06:21 +01:00
parent 11a5728b32
commit f3995658ff

View File

@ -142,7 +142,7 @@ void WindowTestCase::FocusEvent()
m_window->SetFocus();
WX_ASSERT_EVENT_OCCURS(setfocus, 1);
WX_ASSERT_EVENT_OCCURS_IN(setfocus, 1, 500);
CPPUNIT_ASSERT(m_window->HasFocus());
wxButton* button = new wxButton(wxTheApp->GetTopWindow(), wxID_ANY);