From e75a9010b00a82a01030758ed37e09c93543bfa3 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@nokia.com> Date: Thu, 9 Feb 2012 17:53:28 +0100 Subject: [PATCH] Squish: Updates for changed project wizards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I70801de29312bb49db060d0b87fc9dcb1490c6ca Reviewed-by: Robert Löhning <robert.loehning@nokia.com> --- tests/system/shared/project.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index ad0913f5ae5..8f3cd77f8fc 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -134,7 +134,7 @@ def __verifyFileCreation__(path, expectedFiles): # created for this version. If it is None, all Qt versions will be used # param checks turns tests in the function on if set to True def createProject_Qt_GUI(path, projectName, qtVersion = None, checks = True): - __createProjectSelectType__("Other Qt Project", "Qt Gui Application") + __createProjectSelectType__(" Applications", "Qt Gui Application") __createProjectSetNameAndPath__(path, projectName, checks) __selectQtVersionDesktop__(qtVersion, checks) @@ -173,7 +173,7 @@ def createProject_Qt_GUI(path, projectName, qtVersion = None, checks = True): # created for this version. If it is None, all Qt versions will be used # param checks turns tests in the function on if set to True def createProject_Qt_Console(path, projectName, qtVersion = None, checks = True): - __createProjectSelectType__("Other Qt Project", "Qt Console Application") + __createProjectSelectType__(" Applications", "Qt Console Application") __createProjectSetNameAndPath__(path, projectName, checks) __selectQtVersionDesktop__(qtVersion, checks) @@ -191,7 +191,7 @@ def createProject_Qt_Console(path, projectName, qtVersion = None, checks = True) __verifyFileCreation__(path, expectedFiles) def createNewQtQuickApplication(workingDir, projectName = None, templateFile = None, targets = QtQuickConstants.Targets.DESKTOP): - __createProjectSelectType__("Qt Quick Project", "Qt Quick Application") + __createProjectSelectType__(" Applications", "Qt Quick Application") projectName = __createProjectSetNameAndPath__(workingDir, projectName) if (templateFile==None): __chooseComponents__() @@ -209,7 +209,7 @@ def createNewQtQuickApplication(workingDir, projectName = None, templateFile = N return projectName def createNewQtQuickUI(workingDir): - __createProjectSelectType__("Qt Quick Project", "Qt Quick UI") + __createProjectSelectType__(" Applications", "Qt Quick UI") if workingDir == None: workingDir = tempDir() projectName = __createProjectSetNameAndPath__(workingDir) @@ -217,7 +217,7 @@ def createNewQtQuickUI(workingDir): return projectName def createNewQmlExtension(workingDir): - __createProjectSelectType__("Qt Quick Project", "Custom QML Extension Plugin") + __createProjectSelectType__(" Libraries", "Custom QML Extension Plugin") if workingDir == None: workingDir = tempDir() __createProjectSetNameAndPath__(workingDir) -- GitLab