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:
THOMAS J. COCOZZELLO 2015-09-23 08:56:44 -05:00
parent e167e468f4
commit f311e7b428
1 changed files with 1 additions and 1 deletions

View File

@ -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