Browse Source

[stresstests] repeated on time too many

Ask Solem 12 years ago
parent
commit
769c9a7050
1 changed files with 1 additions and 1 deletions
  1. 1 1
      funtests/stress/stress/suite.py

+ 1 - 1
funtests/stress/stress/suite.py

@@ -78,7 +78,7 @@ class Suite(object):
         if list_all:
             return print(self.testlist(tests))
         print(self.banner(tests))
-        it = count() if repeat == float('Inf') else range(int(repeat) + 1)
+        it = count() if repeat == float('Inf') else range(int(repeat))
         for i in it:
             marker(
                 'Stresstest suite start (repetition {0})'.format(i + 1),