--- a/src/eric7/Testing/TestResultsTree.py Tue Feb 21 10:56:54 2023 +0100 +++ b/src/eric7/Testing/TestResultsTree.py Wed Feb 22 07:43:56 2023 +0100 @@ -340,7 +340,7 @@ testResultsToBeAdded = [] for testResult in testResults: - for (index, currentResult) in enumerate(self.__testResults): + for index, currentResult in enumerate(self.__testResults): if currentResult.id == testResult.id: self.__testResults[index] = testResult if minIndex is None: