SquishTests: Adapt to changed template name

Change-Id: I5f50019df33cb83f7f8618e1e390daf08b368143
Reviewed-by: Jukka Nokso <jukka.nokso@qt.io>
Reviewed-by: Robert Löhning <robert.loehning@qt.io>
This commit is contained in:
Christian Stenger
2024-08-06 09:28:46 +02:00
committed by Robert Löhning
parent 270a0026ae
commit fb09f85622

View File

@@ -42,7 +42,7 @@ def main():
for template in dumpItems(templatesView.model(), templatesView.rootIndex()): for template in dumpItems(templatesView.model(), templatesView.rootIndex()):
template = template.replace(".", "\\.") template = template.replace(".", "\\.")
# skip non-configurable # skip non-configurable
if template not in ["Qt Quick UI Prototype", "Qt Creator Plugin"]: if template not in ["Qt Quick UI Prototype", "Qt Creator C++ Plugin"]:
availableProjectTypes.append({category:template}) availableProjectTypes.append({category:template})
safeClickButton("Cancel") safeClickButton("Cancel")
for current in availableProjectTypes: for current in availableProjectTypes: