summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2017-08-04 14:44:48 +0200
committerChristian Stenger <christian.stenger@qt.io>2017-08-07 11:02:19 +0000
commit1643b4e7a78196f0b4bd17230d9acddaab947298 (patch)
tree58910aa1f33324d3f05923044df975900fcfa38f /tests
parente45f4af3d47afaa9a3e58652405f8010e00271a9 (diff)
downloadqt-creator-1643b4e7a78196f0b4bd17230d9acddaab947298.tar.gz
Squish: Remove workaround for fixed issue
Change-Id: I7cc40e83400bcf2614ae6eb34eecefa9bb75d172 Reviewed-by: Robert Loehning <robert.loehning@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_editors/tst_memberoperator/test.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/system/suite_editors/tst_memberoperator/test.py b/tests/system/suite_editors/tst_memberoperator/test.py
index 36db7f6618..4582268c70 100644
--- a/tests/system/suite_editors/tst_memberoperator/test.py
+++ b/tests/system/suite_editors/tst_memberoperator/test.py
@@ -49,11 +49,7 @@ def main():
waitFor("object.exists(':popupFrame_TextEditor::GenericProposalWidget')", 1500)
found = str(lineUnderCursor(cppwindow)).strip()
exp = testData.field(record, "expected")
- if (useClang and exp.endswith("->") and JIRA.isBugStillOpen(16336)
- and platform.system() in ('Windows', 'Microsoft')):
- test.xcompare(found, exp)
- else:
- test.compare(found, exp)
+ test.compare(found, exp)
invokeMenuItem("File", 'Revert "main.cpp" to Saved')
clickButton(waitForObject(":Revert to Saved.Proceed_QPushButton"))
snooze(1)