pybench prep_times calculation error (closes #11895)

This commit is contained in:
Jesus Cea 2011-04-25 03:47:23 +02:00
commit 4f711726be
2 changed files with 2 additions and 1 deletions

View file

@ -859,6 +859,7 @@ Steven Taschuk
Monty Taylor
Amy Taylor
Anatoly Techtonik
Mikhail Terekhov
Tobias Thelen
James Thomas
Robin Thomas

View file

@ -276,7 +276,7 @@ def calibrate_test(self):
for i in calibration_loops:
pass
t = timer() - t
prep_times.append(t)
prep_times.append(t / CALIBRATION_LOOPS)
min_prep_time = min(prep_times)
if _debug:
print()