summaryrefslogtreecommitdiff
path: root/testing/framework/TestRuntest.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/framework/TestRuntest.py')
-rw-r--r--testing/framework/TestRuntest.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/framework/TestRuntest.py b/testing/framework/TestRuntest.py
index 378f44109..d2b3b706a 100644
--- a/testing/framework/TestRuntest.py
+++ b/testing/framework/TestRuntest.py
@@ -99,7 +99,7 @@ class TestRuntest(TestCommon):
initializations.
"""
- def __init__(self, **kw):
+ def __init__(self, **kw) -> None:
"""Initialize a Runtest testing object.
If they're not overridden by keyword arguments, this
@@ -161,7 +161,7 @@ class TestRuntest(TestCommon):
os.environ['PYTHONPATH'] = ''
- def write_fake_scons_source_tree(self):
+ def write_fake_scons_source_tree(self) -> None:
os.mkdir('scripts')
self.write('scripts/scons.py', fake_scons_py)
@@ -170,13 +170,13 @@ class TestRuntest(TestCommon):
os.mkdir('SCons/Script')
self.write('SCons/Script/__init__.py', fake___init___py)
- def write_failing_test(self, name):
+ def write_failing_test(self, name) -> None:
self.write(name, failing_test_template)
- def write_no_result_test(self, name):
+ def write_no_result_test(self, name) -> None:
self.write(name, no_result_test_template)
- def write_passing_test(self, name):
+ def write_passing_test(self, name) -> None:
self.write(name, passing_test_template)
# Local Variables: