Tests: removed extra parameter from range() call.

This commit is contained in:
Andrey Zelenkov
2017-12-06 15:34:06 +03:00
parent 487253754c
commit 078d44ea71

View File

@@ -41,7 +41,7 @@ class TestUnit(unittest.TestCase):
subprocess.call(['kill', pid])
for i in range(1, 50):
for i in range(50):
if not os.path.exists(self.testdir + '/unit.pid'):
break
time.sleep(0.1)