# HG changeset patch # User Augie Fackler # Date 1223435958 18000 # Node ID 31aa63ac778c6f5d703bc5c2c6959eee6768ddaa # Parent 48a44546c12fd9fce5b6052bae1bbaf8624c9014 Fix a stupid mistake. A reminder of why Nose is handy. diff --git a/tests/run.py b/tests/run.py --- a/tests/run.py +++ b/tests/run.py @@ -11,7 +11,7 @@ import test_push_command def suite(): return unittest.TestSuite([test_fetch_command.suite(), test_fetch_command_regexes.suite(), - test_fetch_command_regexes.suite(), + test_push_command.suite(), ]) if __name__ == '__main__':