summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2023-02-09 12:57:55 +0100
committerChristian Stenger <christian.stenger@qt.io>2023-02-09 13:51:26 +0000
commitff65caf62faa1e5c9411c26ccacbf21263fa3393 (patch)
tree0c3228bd818b1ef28fa45608f93b6213cbcbe5f4
parentbad6b2c290d344ec467952e7101142bee2bc3c64 (diff)
downloadqt-creator-ff65caf62faa1e5c9411c26ccacbf21263fa3393.tar.gz
SquishTests: Explicitly convert QString to str
Change-Id: Idcd70a18ed5535d8ad76c09007558cb96f20d178 Reviewed-by: Robert Löhning <robert.loehning@qt.io>
-rw-r--r--tests/system/shared/build_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/build_utils.py b/tests/system/shared/build_utils.py
index 05afc9c493..e1525276d2 100644
--- a/tests/system/shared/build_utils.py
+++ b/tests/system/shared/build_utils.py
@@ -56,7 +56,7 @@ def waitForCompile(timeout=60000):
def dumpBuildIssues(listModel):
issueDump = []
for index in dumpIndices(listModel):
- issueDump.extend([[index.data(role).toString() for role
+ issueDump.extend([[str(index.data(role).toString()) for role
in range(Qt.UserRole, Qt.UserRole + 6)]])
return issueDump