launcher: baseclass: add missing parameter

Fixes "NameError: global name 'options' is not defined"
This commit is contained in:
Thiago Santos 2014-12-08 08:42:51 -03:00
parent 8450dff17d
commit d25fb034fa

View file

@ -880,7 +880,7 @@ class _TestsLauncher(Loggable):
" maybe because of missing TestManager" " maybe because of missing TestManager"
% (testsuite), Colors.FAIL) % (testsuite), Colors.FAIL)
def _load_config(self): def _load_config(self, options):
printc("Loading config files is DEPRECATED" printc("Loading config files is DEPRECATED"
" you should use the new testsuite format now",) " you should use the new testsuite format now",)
@ -913,7 +913,7 @@ class _TestsLauncher(Loggable):
args.remove(tester.name) args.remove(tester.name)
if options.config: if options.config:
self._load_config() self._load_config(options)
self._load_testsuites() self._load_testsuites()