summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/tests/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/core/tests/common.py')
-rw-r--r--meta/lib/oeqa/core/tests/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/core/tests/common.py b/meta/lib/oeqa/core/tests/common.py
index 39efd504c0..88cc758ad3 100644
--- a/meta/lib/oeqa/core/tests/common.py
+++ b/meta/lib/oeqa/core/tests/common.py
@@ -30,9 +30,9 @@ class TestBase(unittest.TestCase):
30 directory = os.path.dirname(os.path.abspath(__file__)) 30 directory = os.path.dirname(os.path.abspath(__file__))
31 self.cases_path = os.path.join(directory, 'cases') 31 self.cases_path = os.path.join(directory, 'cases')
32 32
33 def _testLoader(self, d={}, modules=[], tests=[], filters={}): 33 def _testLoader(self, d={}, modules=[], tests=[], **kwargs):
34 from oeqa.core.context import OETestContext 34 from oeqa.core.context import OETestContext
35 tc = OETestContext(d, self.logger) 35 tc = OETestContext(d, self.logger)
36 tc.loadTests(self.cases_path, modules=modules, tests=tests, 36 tc.loadTests(self.cases_path, modules=modules, tests=tests,
37 filters=filters) 37 **kwargs)
38 return tc 38 return tc