1
0
mirror of https://github.com/HorlogeSkynet/archey4 synced 2025-06-04 04:00:13 +02:00

[TESTS] Fixes Terminal entry test (#143)

This patch is a fix-up for 44a357efa15a8d7f9818ec575c2caff3d89670af.
This commit is contained in:
Michael Bromilow 2024-01-07 08:49:53 +00:00 committed by GitHub
parent 7b2565cf43
commit 56e36c0498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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()