aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py
index 039712f..0a4e3e4 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -81,9 +81,9 @@ def run_tests():
os.mkdir(install_dir)
except OSError:
pass
- print('Running common tests.')
+ print('\nRunning common tests.\n')
[run_test(t) for t in commontests]
- print('Running platform dependent tetss')
+ print('\nRunning platform dependent tests.\n')
[run_test(t) for t in platformtests]
if __name__ == '__main__':