aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2020-08-17 21:44:35 +0200
committerRobert Loehning <robert.loehning@qt.io>2020-08-20 09:29:18 +0000
commita3ddeb73990d09ae1a14f2c50ebb108e9e82e289 (patch)
tree7581b0d8c0cf17144cd8b034397c7b8e25851e9e /tests
parentd305c4d6f4476b13e96e7e48754221ef24942da7 (diff)
Squish: Make workaround in tst_CSUP03 permanent
The bug is fixed in 4.14. Change-Id: I7fe69f98d69de494f886bca3f854b7be626998e8 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_CSUP/tst_CSUP03/test.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/system/suite_CSUP/tst_CSUP03/test.py b/tests/system/suite_CSUP/tst_CSUP03/test.py
index 441c14f354..af6b23a56d 100644
--- a/tests/system/suite_CSUP/tst_CSUP03/test.py
+++ b/tests/system/suite_CSUP/tst_CSUP03/test.py
@@ -51,11 +51,7 @@ def constructExpectedCode(original, codeLines, funcSuffix):
generatedFunc += "\n %s" % line
if withBraces:
generatedFunc += "\n \n }"
- # QTCREATORBUG-12118: last line has 4 additional blanks
- if JIRA.isBugStillOpen(12118):
- generatedFunc += " "
- else:
- test.warning("Remove unnecessary code - QTCREATORBUG-12118 is closed.")
+ generatedFunc += " " # QTCREATORBUG-12118: last line has 4 additional blanks
generatedFunc += "\n}"
tmp.insert(insertHere + 1, generatedFunc)
return "\n".join(tmp) + "\n"