remove unnecessary call in test_delete_container

it is cleaned up in tearDown's delete_containers()
fix typo nit

Change-Id: I0c99079d5a4c2ffbead114cefe439efc8b33051c
This commit is contained in:
Cindy Lu 2016-08-18 13:34:39 -07:00
parent 68fc8b093a
commit 56c1e8c95f
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')