diff options
author | Jenkins <jenkins@review.openstack.org> | 2014-05-24 09:16:59 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2014-05-24 09:16:59 +0000 |
commit | 5e18d95cb297adaa6f9658241e6dca179ef9ab8d (patch) | |
tree | 4f5df47d4eb34502f3c7bdd0365b4bca22e1aa0e /tests/functional/test_swiftclient.py | |
parent | eaf4fcbb8d00e9e974c9408e550154fa3cfeefea (diff) | |
parent | 876238a134d6f0332eeea57e03c3858b452895a1 (diff) | |
download | python-swiftclient-5e18d95cb297adaa6f9658241e6dca179ef9ab8d.tar.gz |
Merge "Remove testtools.main() call from tests"
Diffstat (limited to 'tests/functional/test_swiftclient.py')
-rw-r--r-- | tests/functional/test_swiftclient.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/functional/test_swiftclient.py b/tests/functional/test_swiftclient.py index 3721e51..f58009a 100644 --- a/tests/functional/test_swiftclient.py +++ b/tests/functional/test_swiftclient.py @@ -17,7 +17,6 @@ import os import testtools import time import types -import unittest from io import BytesIO from six.moves import configparser @@ -284,7 +283,3 @@ class TestFunctional(testtools.TestCase): def test_get_capabilities(self): resp = self.conn.get_capabilities() self.assertTrue(resp.get('swift')) - - -if __name__ == '__main__': - unittest.main() |