Changeset 87683 in vbox for trunk/src/VBox/ValidationKit/tests/storage
- Timestamp:
- Feb 10, 2021 12:47:51 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/tdStorageRawDrive1.py
r87681 r87683 1094 1094 if sDictValue == '$': 1095 1095 sDictValue = asAction[sKey]; 1096 if sDictValue != '*' and sDictValue != sValue:1096 if sDictValue not in ('*', sValue): 1097 1097 return reporter.error("VMDK descriptor has value which was not expected"); 1098 1098 continue; … … 1128 1128 return reporter.error("VMDK descriptor has invalid format"); 1129 1129 sDictValue = asDatabase[sKey]; 1130 if sDictValue != '*' and sDictValue != sValue:1130 if sDictValue not in ('*', sValue): 1131 1131 return reporter.error("VMDK descriptor has value which was not expected"); 1132 1132 continue;
Note:
See TracChangeset
for help on using the changeset viewer.