From dd1bc1f607251bac271a6f8f493fb7b8cf8118d2 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Thu, 18 Sep 2014 18:10:40 +0200 Subject: [PATCH] Squish: Avoid crash of tst_CSUP06 Change-Id: I76318223443ec2e0cc8ddd887a8ac70a6993c0c4 Reviewed-by: Christian Stenger --- tests/system/suite_CSUP/tst_CSUP06/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/system/suite_CSUP/tst_CSUP06/test.py b/tests/system/suite_CSUP/tst_CSUP06/test.py index 03af0318f48..03076d18435 100644 --- a/tests/system/suite_CSUP/tst_CSUP06/test.py +++ b/tests/system/suite_CSUP/tst_CSUP06/test.py @@ -149,6 +149,7 @@ def checkSymbolCompletion(editor, isClangCodeModel): propShown = waitFor("object.exists(':popupFrame_TextEditor::GenericProposalWidget')", 2500) test.compare(not propShown, symbol in missing, "Proposal widget is (not) shown as expected (%s)" % symbol) + found = [] if propShown: proposalListView = waitForObject(':popupFrame_Proposal_QListView') found = dumpItems(proposalListView.model())