mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
launcher: baseclass: add missing parameter
Fixes "NameError: global name 'options' is not defined"
This commit is contained in:
parent
8450dff17d
commit
d25fb034fa
1 changed files with 2 additions and 2 deletions
|
@ -880,7 +880,7 @@ class _TestsLauncher(Loggable):
|
|||
" maybe because of missing TestManager"
|
||||
% (testsuite), Colors.FAIL)
|
||||
|
||||
def _load_config(self):
|
||||
def _load_config(self, options):
|
||||
printc("Loading config files is DEPRECATED"
|
||||
" you should use the new testsuite format now",)
|
||||
|
||||
|
@ -913,7 +913,7 @@ class _TestsLauncher(Loggable):
|
|||
args.remove(tester.name)
|
||||
|
||||
if options.config:
|
||||
self._load_config()
|
||||
self._load_config(options)
|
||||
|
||||
self._load_testsuites()
|
||||
|
||||
|
|
Loading…
Reference in a new issue