summaryrefslogtreecommitdiffstats
path: root/tests/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtests.py')
-rw-r--r--tests/runtests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
index da866d4..fc0558d 100644
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -38,8 +38,8 @@ loader = unittest.TestLoader()
for name in gettestnames():
if program and program not in name:
- continue
+ continue
suite.addTest(loader.loadTestsFromName(name))
-
+
testRunner = unittest.TextTestRunner()
testRunner.run(suite)