aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2019-06-26 17:42:41 +0200
committerRobert Loehning <robert.loehning@qt.io>2019-06-27 12:40:15 +0000
commit0b5d60db535179f361fb990851603417a557de86 (patch)
treea8eeacbcd8a92ab2158f706e25d6673960230803 /tests/system
parente777ad57c547abe31b457a95a9dc0b5e39891a79 (diff)
Squish: Update tst_git_local
Change-Id: If3b3eb69a7927d0ecbc5d10afee6ab3fdfbd448b Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests/system')
-rw-r--r--tests/system/suite_tools/tst_git_local/test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/system/suite_tools/tst_git_local/test.py b/tests/system/suite_tools/tst_git_local/test.py
index d5617642f4..8cbdfc42c6 100644
--- a/tests/system/suite_tools/tst_git_local/test.py
+++ b/tests/system/suite_tools/tst_git_local/test.py
@@ -146,9 +146,9 @@ def verifyClickCommit():
"Verifying whether diff editor contains pointless_header.h file.")
test.verify(pointlessHeader not in diffOriginal,
"Verifying whether original does not contain pointless_header.h file.")
- test.verify("HEADERS += \\\n mainwindow.h \\\n pointless_header.h\n" in diffChanged,
+ test.verify("HEADERS += \\\n mainwindow.h \\\n pointless_header.h\n" in diffChanged,
"Verifying whether diff editor has pointless_header.h listed in pro file.")
- test.verify("HEADERS += \\\n mainwindow.h\n\n" in diffOriginal
+ test.verify("HEADERS += \\\n mainwindow.h\n\n" in diffOriginal
and "pointless_header.h" not in diffOriginal,
"Verifying whether original has no additional header in pro file.")
test.verify(original.readOnly and changed.readOnly,
@@ -173,7 +173,7 @@ def main():
% os.path.join(srcPath, projectName, ".git").replace("\\", "/") in str(vcsLog),
"Has initialization of repo been logged:\n%s " % vcsLog)
createLocalGitConfig(os.path.join(srcPath, projectName, ".git"))
- commitMessages = [commit("Initial Commit", "Committed 5 files.")]
+ commitMessages = [commit("Initial Commit", "Committed 6 files.")]
clickButton(waitForObject(":*Qt Creator.Clear_QToolButton"))
headerName = "pointless_header.h"
addCPlusPlusFile(headerName, "C++ Header File", projectName + ".pro",