]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - test/__init__.py
Remove some debug print() statements and fix a copy-paste-o in the tests.
[dunshire.git] / test / __init__.py
index 6942bf2f2af83c8749bae65c586f685ec5b95e08..bbcd4ab767f5cdfd4175b3b49a1edbd78f5e7cb7 100644 (file)
@@ -30,10 +30,10 @@ def build_suite():
     suite.addTest(slg_tests)
     return suite
 
-def run_suite(s):
+def run_suite(suite):
     """
     Run all of the unit and doctests for the ``dunshire`` and ``test``
     packages.
     """
     runner = TextTestRunner(verbosity=1)
-    runner.run(s)
+    return runner.run(suite)