From a2b2f706716dd66d2c7c49f1e1b248383ee60a91 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sun, 25 Feb 2024 17:07:52 +0100 Subject: [PATCH] Fix broken tests --- tests/mocked.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/mocked.py b/tests/mocked.py index 1e9506ff..051b197e 100644 --- a/tests/mocked.py +++ b/tests/mocked.py @@ -20,7 +20,7 @@ along with this program. If not, see . """ from __future__ import annotations -from PyQt5.QtGui import QPixmap +from PyQt5.QtGui import QColor, QPixmap from PyQt5.QtWidgets import QWidget @@ -76,6 +76,7 @@ class MockTheme: def __init__(self): self.baseIconSize = 10 + self.colMark = QColor(255, 255, 166, 128) return def getPixmap(self, *a):