aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/test_index.py')
-rw-r--r--server/tests/test_index.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/test_index.py b/server/tests/test_index.py
index 2796c1d..f77a60d 100644
--- a/server/tests/test_index.py
+++ b/server/tests/test_index.py
@@ -22,5 +22,5 @@ class TestIndex(unittest.TestCase):
if line.startswith('Number of hosts'):
words = line.split()
count = int(words[-1].strip('</br>'))
- self.assertGreaterEqual(count,0)
+ self.assertGreaterEqual(count, 0)
break