Merge "Fix typo of swift_client/swiftclient in store_utils"

This commit is contained in:
Jenkins 2012-06-19 17:53:37 +00:00 committed by Gerrit Code Review
commit ee640fc2da
1 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ def setup_swift(test):
for container in containers:
if container == container_name:
swift_conn.delete_container(container)
except swift_client.ClientException, e:
except swiftclient.ClientException, e:
test.disabled_message = ("Failed to delete container from Swift "
"Got error: %s" % e)
test.disabled = True
@ -162,7 +162,7 @@ def setup_swift(test):
try:
swift_conn.put_container(container_name)
except swift_client.ClientException, e:
except swiftclient.ClientException, e:
test.disabled_message = ("Failed to create container. "
"Got error: %s" % e)
test.disabled = True