X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=mytest.py;h=fd72529b61907e4b16b956d403ef7620a4437faf;hp=627d16fbf5990f2baa84fc3333f38647b740befc;hb=5bc8209d19e1d41f289cfe198e4e3a839adf894b;hpb=b6748e04393c47c18453c2d2fda88e315aa9d55d diff --git a/mytest.py b/mytest.py index 627d16f..fd72529 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)