From b567fb1a33a37e16ad070e20810b4491bd7b9673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20L=C3=B6hning?= Date: Mon, 28 Oct 2024 11:59:56 +0100 Subject: [PATCH] SquishTests: Expect overeager Python kit Task-number: QTCREATORBUG-31809 Change-Id: I77b47a24cde616f7be8208d5bc0f143b29ad102d Reviewed-by: Christian Stenger --- tests/system/suite_general/tst_remove_kits/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/system/suite_general/tst_remove_kits/test.py b/tests/system/suite_general/tst_remove_kits/test.py index 652390e0107..cb1a8e4fe1b 100644 --- a/tests/system/suite_general/tst_remove_kits/test.py +++ b/tests/system/suite_general/tst_remove_kits/test.py @@ -16,7 +16,8 @@ def verifyProjectsMode(expectedKits): hasKits = len(expectedKits) > 0 test.verify(checkIfObjectExists(":scrollArea.Edit build configuration:_QLabel", hasKits), "Verify if build settings are being displayed.") - test.verify(checkIfObjectExists(":No valid kits found._QLabel", not hasKits), + squishFunct = test.xverify if JIRA.isBugStillOpen(31809) and not hasKits else test.verify + squishFunct(checkIfObjectExists(":No valid kits found._QLabel", not hasKits), "Verify if Creator reports missing kits.") kitNameTemplate = "Manual.%s"