Changeset 57680 in vbox for trunk/src/VBox/ValidationKit/testmanager/core
- Timestamp:
- Sep 9, 2015 8:16:35 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102583
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testresults.py
r57678 r57680 1478 1478 1479 1479 # Validate string attributes. 1480 for sAttr in [ 'name', ' unit', 'text' ]:1481 if sAttr in dAttribs and (len(dAttribs[sAttr]) == 0 or sAttr == 'unit'):1480 for sAttr in [ 'name', 'text' ]: # 'unit' can be zero length. 1481 if sAttr in dAttribs and len(dAttribs[sAttr]) == 0: 1482 1482 return 'Element %s has an empty %s attribute value.' % (sName, sAttr,); 1483 1483
Note:
See TracChangeset
for help on using the changeset viewer.