From fe95fe335b6a1aa8afd6765c7b08118c2ee01570 Mon Sep 17 00:00:00 2001 From: Michael Bromilow <12384431+ingrinder@users.noreply.github.com> Date: Sun, 7 Jan 2024 03:30:43 +0000 Subject: [PATCH] [Bug/Tests] Fix Terminal entry test --- archey/test/entries/test_archey_terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archey/test/entries/test_archey_terminal.py b/archey/test/entries/test_archey_terminal.py index 147b3d84..08c3e045 100644 --- a/archey/test/entries/test_archey_terminal.py +++ b/archey/test/entries/test_archey_terminal.py @@ -17,7 +17,7 @@ class TestTerminalEntry(unittest.TestCase): def setUp(self): # By default, colors won't be disabled. self._should_color_output_patch = patch( - "archey.colors.Colors.should_color_output", + "archey.colors.Style.should_color_output", return_value=True, ) self._should_color_output_patch.start()