From 9e621c00297e1002595dc83c507a20de99610fda Mon Sep 17 00:00:00 2001 From: Louis King Date: Mon, 8 Dec 2025 16:42:13 +0000 Subject: [PATCH] Fixed test --- tests/test_web/test_nodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_web/test_nodes.py b/tests/test_web/test_nodes.py index 076f7be..d28fa59 100644 --- a/tests/test_web/test_nodes.py +++ b/tests/test_web/test_nodes.py @@ -91,7 +91,8 @@ class TestNodeDetailPage: assert response.status_code == 200 # Should display node details assert "Node One" in response.text - assert "REPEATER" in response.text + # Node type is shown as emoji with title attribute + assert 'title="Repeater"' in response.text def test_node_detail_displays_public_key( self, client: TestClient, mock_http_client: MockHttpClient