diff options
author | Tim Burke <tim.burke@gmail.com> | 2015-12-04 11:28:05 -0800 |
---|---|---|
committer | Tim Burke <tim.burke@gmail.com> | 2016-02-12 09:57:58 -0800 |
commit | bed6bbd5efd24234825e266a50ac37d33447d340 (patch) | |
tree | 53add861bb295453c2a13dff8d884877e8e08e59 /tests/functional/test_swiftclient.py | |
parent | a6f171437def0603a3a2347748c1253730c26412 (diff) | |
download | python-swiftclient-bed6bbd5efd24234825e266a50ac37d33447d340.tar.gz |
Drop testtools from test-requirements.txt
My understanding is that it was mainly being used so we could have sane
testing on py26. With py26 support being dropped, we no longer need it.
Also drop discover from test-requirements.txt, as we don't seem to
actually use it.
Change-Id: Iee04c42890596d3b483c1473169480a3ae19aac8
Related-Change: I37116731db11449d0c374a6a83a3a43789a19d5f
Diffstat (limited to 'tests/functional/test_swiftclient.py')
-rw-r--r-- | tests/functional/test_swiftclient.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/test_swiftclient.py b/tests/functional/test_swiftclient.py index 5f9e271..7a77c07 100644 --- a/tests/functional/test_swiftclient.py +++ b/tests/functional/test_swiftclient.py @@ -14,7 +14,7 @@ # limitations under the License. import os -import testtools +import unittest import time from io import BytesIO @@ -23,7 +23,7 @@ from six.moves import configparser import swiftclient -class TestFunctional(testtools.TestCase): +class TestFunctional(unittest.TestCase): def __init__(self, *args, **kwargs): super(TestFunctional, self).__init__(*args, **kwargs) |