Changeset 61222 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 27, 2016 1:48:19 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107511
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/base.py
r61220 r61222 362 362 if sAttr is not None: 363 363 oValue = getattr(self, sAttr); 364 if (oValue is None) != fMustBeNull:364 if self.isAttributeNull(sAttr, oValue) != fMustBeNull: 365 365 sParam = getattr(self, 'ksParam_' + sAttr); 366 366 sErrMsg = 'Must be NULL!' if fMustBeNull else 'Must not be NULL!'
Note:
See TracChangeset
for help on using the changeset viewer.