summaryrefslogtreecommitdiff
path: root/testing/framework/TestCommon.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/framework/TestCommon.py')
-rw-r--r--testing/framework/TestCommon.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/framework/TestCommon.py b/testing/framework/TestCommon.py
index e8045ca96..f45b856e3 100644
--- a/testing/framework/TestCommon.py
+++ b/testing/framework/TestCommon.py
@@ -676,7 +676,7 @@ class TestCommon(TestCmd):
"""
arguments = self.options_arguments(options, arguments)
try:
- return TestCmd.start(self, program, interpreter, arguments,
+ return super().start(program, interpreter, arguments,
universal_newlines, **kw)
except KeyboardInterrupt:
raise
@@ -713,7 +713,7 @@ class TestCommon(TestCmd):
command. A value of None means don't
test exit status.
"""
- TestCmd.finish(self, popen, **kw)
+ super().finish(popen, **kw)
match = kw.get('match', self.match)
self._complete(self.stdout(), stdout,
self.stderr(), stderr, status, match)
@@ -750,7 +750,7 @@ class TestCommon(TestCmd):
del kw['match']
except KeyError:
match = self.match
- TestCmd.run(self, **kw)
+ super().run(**kw)
self._complete(self.stdout(), stdout,
self.stderr(), stderr, status, match)