Changeset 65868 in vbox for trunk/src/VBox/ValidationKit/testmanager/webui
- Timestamp:
- Feb 23, 2017 4:36:27 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113642
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuireport.py
r65503 r65868 124 124 """ 125 125 uPct = cHits * 100 / cTotal; 126 if uPct >= 10 :126 if uPct >= 10 and (uPct > 103 or uPct <= 95): 127 127 return '%s%%' % (uPct,); 128 128 return '%.1f%%' % (cHits * 100.0 / cTotal,);
Note:
See TracChangeset
for help on using the changeset viewer.