ソースを参照

[stresstests] repeated on time too many

Ask Solem 11 年 前
コミット
769c9a7050
1 ファイル変更1 行追加1 行削除
  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),