aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Löhning <robert.loehning@qt.io>2021-12-10 14:46:46 +0100
committerRobert Löhning <robert.loehning@qt.io>2021-12-10 22:11:18 +0000
commit85b1d166eb35fbf523b145d44f88d3eda0a0559b (patch)
treed5829ebe38fe87f35816e2031ea2799b137f3624
parentd420e7f5eea686dbd916505645755766b91ab823 (diff)
Squish: Don't try saving files after refactoring
Files are being saved automatically. Change-Id: I4a5ce9e1ddbbd6ea3c7f51d8548a31eda8de0aab Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/system/suite_QMLS/tst_QMLS05/test.py2
-rw-r--r--tests/system/suite_QMLS/tst_QMLS06/test.py2
-rw-r--r--tests/system/suite_QMLS/tst_QMLS07/test.py2
3 files changed, 0 insertions, 6 deletions
diff --git a/tests/system/suite_QMLS/tst_QMLS05/test.py b/tests/system/suite_QMLS/tst_QMLS05/test.py
index 9f78d8b8c4..376c8bfd50 100644
--- a/tests/system/suite_QMLS/tst_QMLS05/test.py
+++ b/tests/system/suite_QMLS/tst_QMLS05/test.py
@@ -55,7 +55,5 @@ def main():
for line in ["Item {", "x: 10;", "y: 20;", "width: 10", "}"]:
verifyCurrentLine(editorArea, line, verifyMessage)
type(editorArea, "<Down>")
- #save and exit
- invokeMenuItem("File", "Save All")
invokeMenuItem("File", "Exit")
diff --git a/tests/system/suite_QMLS/tst_QMLS06/test.py b/tests/system/suite_QMLS/tst_QMLS06/test.py
index 9c61188e1f..c2c0fe0746 100644
--- a/tests/system/suite_QMLS/tst_QMLS06/test.py
+++ b/tests/system/suite_QMLS/tst_QMLS06/test.py
@@ -70,6 +70,4 @@ def main():
verifyCurrentLine(editorArea, "sourceComponent: component_Item", verifyMessage)
type(editorArea, "<Down>")
verifyCurrentLine(editorArea, "}", verifyMessage)
- # save and exit
- invokeMenuItem("File", "Save All")
invokeMenuItem("File", "Exit")
diff --git a/tests/system/suite_QMLS/tst_QMLS07/test.py b/tests/system/suite_QMLS/tst_QMLS07/test.py
index 054332e521..b8e5d66e62 100644
--- a/tests/system/suite_QMLS/tst_QMLS07/test.py
+++ b/tests/system/suite_QMLS/tst_QMLS07/test.py
@@ -47,6 +47,4 @@ def main():
type(editorArea, "<Up>")
test.compare(str(lineUnderCursor(editorArea)).strip(), "// @disable-check M16",
"Verifying 'Add comment to suppress message' refactoring")
- # save and exit
- invokeMenuItem("File", "Save All")
invokeMenuItem("File", "Exit")