From 0dec19173caf91c8b0523367660ddc8ae7fbe327 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Fri, 8 Jul 2016 14:31:48 +0200 Subject: [PATCH] Squish: Only snooze if bug still requires it in tst_memberoperator Change-Id: I746007c319823cc7fd166c35f8f94f69badd623b Reviewed-by: Christian Stenger --- tests/system/suite_editors/tst_memberoperator/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/suite_editors/tst_memberoperator/test.py b/tests/system/suite_editors/tst_memberoperator/test.py index b02271ac3e7..36db7f66181 100644 --- a/tests/system/suite_editors/tst_memberoperator/test.py +++ b/tests/system/suite_editors/tst_memberoperator/test.py @@ -43,8 +43,8 @@ def main(): typeLines(cppwindow, ("", testData.field(record, "declaration"))) type(cppwindow, testData.field(record, "usage")) snooze(1) # maybe find something better - if useClang: - snooze(1) # QTCREATORBUG-15639 + if useClang and JIRA.isBugStillOpen(15639): + snooze(1) type(cppwindow, testData.field(record, "operator")) waitFor("object.exists(':popupFrame_TextEditor::GenericProposalWidget')", 1500) found = str(lineUnderCursor(cppwindow)).strip()