From 78b65c808ac8daa28fc59fb888c583d343807481 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 13 Dec 2011 13:54:14 +0100 Subject: [PATCH] Squish: Small fix Change-Id: I3bb789950b278dd7ac829555678c126703f6cf52 Reviewed-by: Christian Stenger Reviewed-by: Bill King --- tests/system/shared/project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py index 5e20e90462d..e4881a37f03 100644 --- a/tests/system/shared/project.py +++ b/tests/system/shared/project.py @@ -134,13 +134,13 @@ def createProject_Qt_GUI(path, projectName, qtVersion, checks): expectedFiles = None if checks: - expectedFiles = [os.path.join(path, projectName), cpp_file, h_file, ui_file, pro_file] + path = os.path.join(path, projectName) + expectedFiles = [path, cpp_file, h_file, ui_file, pro_file] __createProjectHandleLastPage__(expectedFiles) if checks: waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 20000) - path = os.path.join(path, projectName) cpp_path = os.path.join(path, cpp_file) h_path = os.path.join(path, h_file) ui_path = os.path.join(path, ui_file)