X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/dd0d9dfcca6d9c0d7babba263c7d476c97f1f7ba..8ce776c6c8e46e4391327db4018393c19f07cd5d:/mytest.py 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)