Changeset 61318 in vbox
- Timestamp:
- May 31, 2016 7:40:16 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testboxcontroller.py
r61261 r61318 395 395 # Update the row in TestBoxes if something changed. 396 396 # 397 cPctScratchDiff = (cMbScratch - oTestBox.cMbScratch) * 100 / oTestBox.cMbScratch; 397 if oTestBox.cMbScratch != 0: 398 cPctScratchDiff = (cMbScratch - oTestBox.cMbScratch) * 100 / oTestBox.cMbScratch; 399 else: 400 cPctScratchDiff = 100; 398 401 399 402 # pylint: disable=R0916
Note:
See TracChangeset
for help on using the changeset viewer.