aboutsummaryrefslogtreecommitdiff
path: root/mytest.py
diff options
context:
space:
mode:
Diffstat (limited to 'mytest.py')
-rw-r--r--mytest.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/mytest.py b/mytest.py
index 627d16fb..fd72529b 100644
--- a/mytest.py
+++ b/mytest.py
@@ -511,7 +511,9 @@ def runScreenTest():
profile("wizards")
screensToRun += wizardManager.getWizards()
- screensToRun.append(Screens.InfoBar.InfoBar)
+ screensToRun.append((100, Screens.InfoBar.InfoBar))
+
+ screensToRun.sort()
ePythonConfigQuery.setQueryFunc(configfile.getResolvedKey)
@@ -526,7 +528,7 @@ def runScreenTest():
quitMainloop(*result)
return
- screen = screensToRun[0]
+ screen = screensToRun[0][1]
if len(screensToRun):
session.openWithCallback(boundFunction(runNextScreen, session, screensToRun[1:]), screen)