From d96c2e5d1677c25943a9d77bbefbc9300f647968 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 11 Jun 2019 11:10:05 +0200 Subject: [PATCH] AutoTest: Fix updating parent Skip had been added mistakenly to the insignificant results. Do not handle Skip as an insignificant result as it will be correctly handled while updating the result. Fixes: QTCREATORBUG-22545 Change-Id: I3c09416934b1c747dd8160635b5bfaa46c31f5a4 Reviewed-by: David Schulz --- src/plugins/autotest/testresultmodel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/autotest/testresultmodel.cpp b/src/plugins/autotest/testresultmodel.cpp index f07bc5f0085..a3c6ec28a86 100644 --- a/src/plugins/autotest/testresultmodel.cpp +++ b/src/plugins/autotest/testresultmodel.cpp @@ -116,7 +116,6 @@ void TestResultItem::updateDescription(const QString &description) static bool isSignificant(ResultType type) { switch (type) { - case ResultType::Skip: case ResultType::Benchmark: case ResultType::MessageInfo: case ResultType::MessageInternal: