Merge "Remove xrange for run both Python 2 and Python 3"
This commit is contained in:
commit
398d8afc40
@ -448,7 +448,7 @@ class TestIps(unittest.TestCase):
|
||||
|
||||
mock_open = mock.mock_open()
|
||||
|
||||
for i in xrange(0, 99):
|
||||
for i in range(0, 99):
|
||||
# tearDown is ineffective for this loop, so clean the USED_IPs
|
||||
# on each run
|
||||
inventory = None
|
||||
|
Loading…
x
Reference in New Issue
Block a user