Use the correct import for range
Since range is imported directly we should use the correct import. This also will keep it consistent within the file. Change-Id: Idc3cf36a792842a7db6bb8c4c8d495ab1dd1ac79
This commit is contained in:
parent
e167e468f4
commit
f311e7b428
@ -4671,7 +4671,7 @@ class TokenTests(object):
|
||||
|
||||
def test_list_revoked_tokens_for_multiple_tokens(self):
|
||||
self.check_list_revoked_tokens([self.delete_token()
|
||||
for x in six.moves.range(2)])
|
||||
for x in range(2)])
|
||||
|
||||
def test_flush_expired_token(self):
|
||||
token_id = uuid.uuid4().hex
|
||||
|
Loading…
Reference in New Issue
Block a user