summaryrefslogtreecommitdiff
path: root/tempest/api/object_storage/test_object_expiry.py
diff options
context:
space:
mode:
Diffstat (limited to 'tempest/api/object_storage/test_object_expiry.py')
-rw-r--r--tempest/api/object_storage/test_object_expiry.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tempest/api/object_storage/test_object_expiry.py b/tempest/api/object_storage/test_object_expiry.py
index 89856b730..fec68733e 100644
--- a/tempest/api/object_storage/test_object_expiry.py
+++ b/tempest/api/object_storage/test_object_expiry.py
@@ -69,7 +69,6 @@ class ObjectExpiryTest(base.BaseObjectTest):
self.assertRaises(lib_exc.NotFound, self.object_client.get_object,
self.container_name, self.object_name)
- @test.attr(type='gate')
@test.idempotent_id('fb024a42-37f3-4ba5-9684-4f40a7910b41')
def test_get_object_after_expiry_time(self):
# the 10s is important, because the get calls can take 3s each
@@ -77,7 +76,6 @@ class ObjectExpiryTest(base.BaseObjectTest):
metadata = {'X-Delete-After': '10'}
self._test_object_expiry(metadata)
- @test.attr(type='gate')
@test.idempotent_id('e592f18d-679c-48fe-9e36-4be5f47102c5')
def test_get_object_at_expiry_time(self):
metadata = {'X-Delete-At': str(int(time.time()) + 10)}