diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-06-28 16:49:23 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-06-28 16:49:23 +0000 |
| commit | 9ee038fc65a439d16d949e56efa65b147b9b8923 (patch) | |
| tree | fcd1aac0dcd00998e202f596546f6617904ebcb7 /tests/utils.py | |
| parent | 900e1433f1398550b0ebec62e34b91f783ef9ca3 (diff) | |
| parent | fe8f9023acb945ad3c201a42baa28179eb08b388 (diff) | |
| download | python-keystoneclient-0.3.1.tar.gz | |
Merge "Fix and enable H401"0.3.1
Diffstat (limited to 'tests/utils.py')
| -rw-r--r-- | tests/utils.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/utils.py b/tests/utils.py index e6b40e8..16eeecc 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -94,7 +94,7 @@ class TestCase(testtools.TestCase): class UnauthenticatedTestCase(testtools.TestCase): - """ Class used as base for unauthenticated calls """ + """Class used as base for unauthenticated calls.""" TEST_ROOT_URL = 'http://127.0.0.1:5000/' TEST_URL = '%s%s' % (TEST_ROOT_URL, 'v2.0') TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/' @@ -122,8 +122,9 @@ class UnauthenticatedTestCase(testtools.TestCase): class TestResponse(requests.Response): - """ Class used to wrap requests.Response and provide some - convenience to initialize with a dict """ + """Class used to wrap requests.Response and provide some + convenience to initialize with a dict. + """ def __init__(self, data): self._text = None |
