Increase the delay to wait before trying to close the dialogs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71284 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-04-26 01:29:44 +00:00
parent ad25fd5756
commit 09df1a5ae0

View File

@@ -12,7 +12,7 @@ class tipdlg_Tests(wtc.WidgetTestCase):
def test_tipdlg1(self):
tp = wx.adv.CreateFileTipProvider(tipFile, 0);
wx.CallLater(25, self.closeDialogs)
wx.CallLater(50, self.closeDialogs)
wx.adv.ShowTip(self.frame, tp)
@@ -21,7 +21,7 @@ class tipdlg_Tests(wtc.WidgetTestCase):
def GetTip(self):
return "This is my tip"
wx.CallLater(25, self.closeDialogs)
wx.CallLater(150, self.closeDialogs)
wx.adv.ShowTip(self.frame, MyTipProvider(0))