Merge "Remove xrange for run both Python 2 and Python 3"

This commit is contained in:
Jenkins
2016-10-13 18:23:05 +00:00
committed by Gerrit Code Review

View File

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