summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2017-05-04 16:38:07 +0200
committerRobert Loehning <robert.loehning@qt.io>2017-05-08 09:15:27 +0000
commitd10b9390c880c0b57fceb24622a719f269bf4c1a (patch)
tree0e9ee386032695ab7829ed57d367b6fdf6c1a2a9
parent079e6cb8bbc04f6d8a73c002e7dda2971b24ae1c (diff)
downloadqt-creator-d10b9390c880c0b57fceb24622a719f269bf4c1a.tar.gz
Squish: Update tst_git_local
Format of .pro file changed slightly Change-Id: I026057ecc76c082ddac06e81b36c0b3b62629da0 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/system/suite_tools/tst_git_local/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/suite_tools/tst_git_local/test.py b/tests/system/suite_tools/tst_git_local/test.py
index affd6bbc64..eda76fea5c 100644
--- a/tests/system/suite_tools/tst_git_local/test.py
+++ b/tests/system/suite_tools/tst_git_local/test.py
@@ -145,9 +145,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 += 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 += 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,