summaryrefslogtreecommitdiff
path: root/testing/framework/TestSCons.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/framework/TestSCons.py')
-rw-r--r--testing/framework/TestSCons.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py
index ca67092e3..18b91932e 100644
--- a/testing/framework/TestSCons.py
+++ b/testing/framework/TestSCons.py
@@ -461,7 +461,7 @@ class TestSCons(TestCommon):
"""
sconsflags = initialize_sconsflags(self.ignore_python_version)
try:
- TestCommon.run(self, *args, **kw)
+ super().run(*args, **kw)
finally:
restore_sconsflags(sconsflags)
@@ -1636,7 +1636,7 @@ else:
kw['stdin'] = True
sconsflags = initialize_sconsflags(self.ignore_python_version)
try:
- p = TestCommon.start(self, *args, **kw)
+ p = super().start(*args, **kw)
finally:
restore_sconsflags(sconsflags)
return p