Changeset 61290 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 30, 2016 12:39:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/report.py
r61286 r61290 328 328 ReportPeriodBase.__init__(self, oSet, iPeriod, sDesc, tsFrom, tsTo); 329 329 self.cTotal = 0; 330 self.cM inTotal = 0;331 self.cM axTotal = 99999999;330 self.cMaxTotal = 0; 331 self.cMinTotal = 99999999; 332 332 self.uMaxPct = 0; # Max percentage in a row (100 = 100%). 333 333 … … 352 352 super(ReportPeriodWithTotalBase, self).helperSetResetStats(); 353 353 self.cTotal = 0; 354 self.cM inTotal = 0;355 self.cM axTotal = 99999999;354 self.cMaxTotal = 0; 355 self.cMinTotal = 99999999; 356 356 self.uMaxPct = 0; 357 357
Note:
See TracChangeset
for help on using the changeset viewer.