From 0bebbf2c40e5431640b32abe600bed1ec4492261 Mon Sep 17 00:00:00 2001 From: Tobilike <80016610+Tobilike@users.noreply.github.com> Date: Fri, 12 Jan 2024 07:48:08 +0100 Subject: [PATCH] [icons] Revert change. Tests read and apply the config.json. That was unexpected. I have turned the icons on in my config. For testing. --- archey/test/entries/test_archey_lan_ip.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archey/test/entries/test_archey_lan_ip.py b/archey/test/entries/test_archey_lan_ip.py index 9dd3aa5e..d27d3d3d 100644 --- a/archey/test/entries/test_archey_lan_ip.py +++ b/archey/test/entries/test_archey_lan_ip.py @@ -247,9 +247,9 @@ def test_ipv6_and_limit_and_ether(self, _, __): self.assertEqual(output_mock.append.call_count, 3) output_mock.append.assert_has_calls( [ - call("\U000f0a60 LAN IP", "192.168.1.55"), - call("\U000f0a60 LAN IP", "2001::45:6789:abcd:6817"), - call("\U000f0a60 LAN IP", "fe80::abcd:ef0:abef:dead"), + call("LAN IP", "192.168.1.55"), + call("LAN IP", "2001::45:6789:abcd:6817"), + call("LAN IP", "fe80::abcd:ef0:abef:dead"), ] )