From 2418dc3bfd4b614b98dcd95947bb9abb3859129d Mon Sep 17 00:00:00 2001 From: wangxiyuan Date: Wed, 14 Dec 2016 16:44:49 +0800 Subject: [PATCH] Remove the TODO for subscription ttl test The subscription TTL test has ran at server side with tempest test already. And it's a slow test because the minimum of TTL is 60 seconds, so we don't need add this to client functional test now. Change-Id: I8734703e52594f63079b24acb338af3af6c406e8 --- zaqarclient/tests/queues/subscriptions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/zaqarclient/tests/queues/subscriptions.py b/zaqarclient/tests/queues/subscriptions.py index 2f3fcbed..cdfb81e9 100644 --- a/zaqarclient/tests/queues/subscriptions.py +++ b/zaqarclient/tests/queues/subscriptions.py @@ -180,8 +180,6 @@ class QueuesV2SubscriptionFunctionalTest(base.QueuesTestBase): def setUp(self): super(QueuesV2SubscriptionFunctionalTest, self).setUp() - # TODO(flwang): Now there is a bug(#1529168) for the subscription TTL, - # so we will add a test case for TTL after the bug fixed. self.queue_name = 'beijing' queue = self.client.queue(self.queue_name, force_create=True) self.addCleanup(queue.delete)