From 078d44ea710d74027d3c563528c69ed87f321120 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Wed, 6 Dec 2017 15:34:06 +0300 Subject: [PATCH] Tests: removed extra parameter from range() call. --- test/unit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit.py b/test/unit.py index 1383b035..b8cd5154 100644 --- a/test/unit.py +++ b/test/unit.py @@ -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)