forked from qt-creator/qt-creator
SquishTests: Fix expected clone output
The working directory is quoted nowadays. Change-Id: I8b4abc5d21a3adb4b07b7582c2e5f74f11da51d0 Reviewed-by: Robert Löhning <robert.loehning@qt.io>
This commit is contained in:
@@ -43,7 +43,7 @@ def verifyVersionControlView(targetDir, canceled):
|
|||||||
vcsLog = str(waitForObject("{type='Core::OutputWindow' unnamed='1' visible='1' "
|
vcsLog = str(waitForObject("{type='Core::OutputWindow' unnamed='1' visible='1' "
|
||||||
"window=':Qt Creator_Core::Internal::MainWindow'}").plainText)
|
"window=':Qt Creator_Core::Internal::MainWindow'}").plainText)
|
||||||
test.log("Clone log is: %s" % vcsLog)
|
test.log("Clone log is: %s" % vcsLog)
|
||||||
test.verify("Running in " + targetDir + ":" in vcsLog,
|
test.verify('Running in "' + targetDir + '":' in vcsLog,
|
||||||
"Searching for target directory in clone log")
|
"Searching for target directory in clone log")
|
||||||
test.verify(" ".join(["clone", "--progress", cloneUrl, cloneDir]) in vcsLog,
|
test.verify(" ".join(["clone", "--progress", cloneUrl, cloneDir]) in vcsLog,
|
||||||
"Searching for git parameters in clone log")
|
"Searching for git parameters in clone log")
|
||||||
|
Reference in New Issue
Block a user