SquishTests: More Python3 adaption

Change-Id: I95488e2b5661c8790cb73246947af58de2a1899b
Reviewed-by: Robert Löhning <robert.loehning@qt.io>
This commit is contained in:
Christian Stenger
2023-03-28 14:59:36 +02:00
parent 230b030755
commit 3ad00fc871
3 changed files with 3 additions and 3 deletions

View File

@@ -157,7 +157,7 @@ def __handleTextTips__(textTip, expectedVals, alternativeVals):
props = object.properties(textTip)
expFail = False
eResult = verifyProperties(props, expectedVals)
for val in eResult.itervalues():
for val in eResult.values():
if not val:
expFail = True
break