aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2020-01-21 15:53:07 +0100
committerChristian Stenger <christian.stenger@qt.io>2020-01-27 12:07:33 +0000
commit3573b2db7f741b6239c1fb746c16b8ebdaff075b (patch)
tree3924d51b4b35661fcaa80625b17f63d900344f53 /tests/system/shared
parent2c295905a9e45b0560cc08b2c49c2971aa0fe4d1 (diff)
Squish: Fix wizard template categories
Change-Id: Ifb26430c429dc41ea73789a210f93b80e0e8d3f2 Reviewed-by: Robert Loehning <robert.loehning@qt.io>
Diffstat (limited to 'tests/system/shared')
-rw-r--r--tests/system/shared/project.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index 7ea25299e5..4219d77df7 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -215,7 +215,7 @@ def __modifyAvailableTargets__(available, requiredQt, asStrings=False):
# param checks turns tests in the function on if set to True
def createProject_Qt_GUI(path, projectName, checks = True, addToVersionControl = "<None>"):
template = "Qt Widgets Application"
- available = __createProjectOrFileSelectType__(" Application", template)
+ available = __createProjectOrFileSelectType__(" Application (Qt)", template)
__createProjectSetNameAndPath__(path, projectName, checks)
__handleBuildSystem__(None)
@@ -256,7 +256,7 @@ def createProject_Qt_GUI(path, projectName, checks = True, addToVersionControl =
# param projectName is the name for the new project
# param checks turns tests in the function on if set to True
def createProject_Qt_Console(path, projectName, checks = True, buildSystem = None):
- available = __createProjectOrFileSelectType__(" Application", "Qt Console Application")
+ available = __createProjectOrFileSelectType__(" Application (Qt)", "Qt Console Application")
__createProjectSetNameAndPath__(path, projectName, checks)
__handleBuildSystem__(buildSystem)
__createProjectHandleTranslationSelection__()
@@ -281,7 +281,7 @@ def createNewQtQuickApplication(workingDir, projectName=None,
targets=Targets.desktopTargetClasses(), minimumQtVersion="5.6",
template="Qt Quick Application - Empty", fromWelcome=False,
buildSystem=None):
- available = __createProjectOrFileSelectType__(" Application", template, fromWelcome)
+ available = __createProjectOrFileSelectType__(" Application (Qt Quick)", template, fromWelcome)
projectName = __createProjectSetNameAndPath__(workingDir, projectName)
__handleBuildSystem__(buildSystem)
requiredQt = __createProjectHandleQtQuickSelection__(minimumQtVersion)