summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@theqtcompany.com>2015-09-10 15:40:46 +0200
committerRobert Loehning <robert.loehning@theqtcompany.com>2015-09-11 12:15:20 +0000
commit73fbf3afd1b4a85f6f464b65512a92229fb5f059 (patch)
treefe3f0769f6bcd52e5f7f7d57c825c8ae06d56702
parentebad4ed2c17a14e97966858eb56a5c98fd19de5a (diff)
downloadqt-creator-73fbf3afd1b4a85f6f464b65512a92229fb5f059.tar.gz
Squish: Don't check state of closed bug
The bug is fixed in master so checking for it here in 3.5 is wrong and causes fails. Change-Id: Idd429cf61734c869ada2728151b2bf6f82f6a240 Task-number: QTCREATORBUG-14307 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--tests/system/suite_debugger/tst_simple_analyze/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_debugger/tst_simple_analyze/test.py b/tests/system/suite_debugger/tst_simple_analyze/test.py
index f5b926794f..e04207deb3 100644
--- a/tests/system/suite_debugger/tst_simple_analyze/test.py
+++ b/tests/system/suite_debugger/tst_simple_analyze/test.py
@@ -38,7 +38,7 @@ def main():
workingDir = tempDir()
# we need a Qt >= 5.3 - we use checkedTargets, so we should get only valid targets
analyzerTargets = Targets.desktopTargetClasses()
- if platform.system() in ('Windows', 'Microsoft') and JIRA.isBugStillOpen(14307):
+ if platform.system() in ('Windows', 'Microsoft'):
analyzerTargets &= ~Targets.DESKTOP_541_GCC
checkedTargets, projectName = createNewQtQuickApplication(workingDir, targets=analyzerTargets)
editor = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")