From b8d5c04f9af585b9913ea092384a332df56dbd12 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Wed, 6 Apr 2016 23:23:08 -0400 Subject: [PATCH] Fix VLBox test - need to wait a little longer --- unittests/test_vlbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/test_vlbox.py b/unittests/test_vlbox.py index 53246e9c..7abe32d4 100644 --- a/unittests/test_vlbox.py +++ b/unittests/test_vlbox.py @@ -22,7 +22,7 @@ class vlbox_Tests(wtc.WidgetTestCase): lb = MyVListBox(panel, pos=(10,10), size=(100,150), style=wx.BORDER_THEME) lb.data = ['zero', 'one two', 'three four', 'five six', 'seven eight', 'nine ten'] lb.SetItemCount(len(lb.data)) - self.waitFor(50) + self.waitFor(100) # check the ItemCount property self.assertEqual(len(lb.data), lb.ItemCount)