diff options
author | Christian Schwede <christian.schwede@enovance.com> | 2014-05-20 14:49:49 +0000 |
---|---|---|
committer | Christian Schwede <christian.schwede@enovance.com> | 2014-05-20 14:54:41 +0000 |
commit | 876238a134d6f0332eeea57e03c3858b452895a1 (patch) | |
tree | 8ccb2d90169cc6555ceba302ab9e3a7c27a135ff /tests/unit/test_multithreading.py | |
parent | 761ba3770b4b555309ca79bb6604f078a2ef2c3b (diff) | |
download | python-swiftclient-876238a134d6f0332eeea57e03c3858b452895a1.tar.gz |
Remove testtools.main() call from tests
There is no testtools.main() at all (this was a
unittest.main() before). Let's remove this unused
and non-working code.
The following code can be used if someone needs
to start tests manually:
python -m unittest <test_file.py>
Change-Id: Id5162ac73825584df6c23dbe68786ff3355fc6ae
Diffstat (limited to 'tests/unit/test_multithreading.py')
-rw-r--r-- | tests/unit/test_multithreading.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unit/test_multithreading.py b/tests/unit/test_multithreading.py index 875e43a..1df0d4f 100644 --- a/tests/unit/test_multithreading.py +++ b/tests/unit/test_multithreading.py @@ -341,7 +341,3 @@ class TestMultiThreadingManager(ThreadTestCase): ], list(err_stream.readlines())) self.assertEqual(3, thread_manager.error_count) - - -if __name__ == '__main__': - testtools.main() |