Merge "Remove six"

This commit is contained in:
Zuul 2024-02-21 02:30:32 +00:00 committed by Gerrit Code Review
commit ffefe045df
2 changed files with 2 additions and 5 deletions

View File

@ -13,8 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from six import moves
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
@ -49,7 +47,7 @@ class TestManageQueue(base.BaseV1MessagingTest):
def resource_setup(cls):
super(TestManageQueue, cls).resource_setup()
cls.queues = list()
for _ in moves.xrange(5):
for _ in range(5):
queue_name = data_utils.rand_name('Queues-Test')
cls.queues.append(queue_name)
# Create Queue

View File

@ -14,7 +14,6 @@
# limitations under the License.
from six import moves
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
@ -46,7 +45,7 @@ class TestManageQueue(base.BaseV11MessagingTest):
def resource_setup(cls):
super(TestManageQueue, cls).resource_setup()
cls.queues = list()
for _ in moves.xrange(5):
for _ in range(5):
queue_name = data_utils.rand_name('Queues-Test')
cls.queues.append(queue_name)
# Create Queue