summaryrefslogtreecommitdiffhomepage
path: root/test/unit.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2017-12-06 15:34:06 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2017-12-06 15:34:06 +0300
commit078d44ea710d74027d3c563528c69ed87f321120 (patch)
tree7951f7a6d0cd5824b21cf7759053e3e69b229080 /test/unit.py
parent487253754c956d7d7bdb1745d8087cb07b1ece27 (diff)
downloadunit-078d44ea710d74027d3c563528c69ed87f321120.tar.gz
unit-078d44ea710d74027d3c563528c69ed87f321120.tar.bz2
Tests: removed extra parameter from range() call.
Diffstat (limited to 'test/unit.py')
-rw-r--r--test/unit.py2
1 files changed, 1 insertions, 1 deletions
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)