diff options
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index 8b5fbb2..07776b1 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -38,7 +38,7 @@ def fake_get_keystoneclient_2_0(os_options, exc=None, **kwargs): from swiftclient import client as c raise c.ClientException("unverified-certificate") - return ("http://url/", "token") + return "http://url/", "token" return fake_get_keystoneclient_2_0 |