Merge "remove unnecessary call in test_delete_container"

This commit is contained in:
Jenkins 2016-08-20 18:30:00 +00:00 committed by Gerrit Code Review
commit 0d758826aa
2 changed files with 1 additions and 2 deletions

View File

@ -70,7 +70,7 @@ class ContainerQuotasTest(base.BaseObjectTest):
@test.requires_ext(extension='container_quotas', service='object')
@test.attr(type="smoke")
def test_upload_large_object(self):
"""Attempts to upload an object lagger than the bytes quota."""
"""Attempts to upload an object larger than the bytes quota."""
object_name = data_utils.rand_name(name="TestObject")
data = data_utils.arbitrary_string(QUOTA_BYTES + 1)

View File

@ -124,7 +124,6 @@ class ContainerTest(base.BaseObjectTest):
# delete container, success asserted within
resp, _ = self.container_client.delete_container(container_name)
self.assertHeaders(resp, 'Container', 'DELETE')
self.containers.remove(container_name)
@test.attr(type='smoke')
@test.idempotent_id('312ff6bd-5290-497f-bda1-7c5fec6697ab')