test: update tests to reflect latest changes

This commit is contained in:
2025-12-10 10:44:22 +01:00
parent ccb2b6fbdc
commit 66aa7ba962
2 changed files with 2 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ class TestWebRequest:
mock_response.text = "192.168.1.1" # Not in ALLOWED_IPS
mock_get.return_value = mock_response
with pytest.raises(PermissionError, match="IP not allowed"):
with pytest.raises(PermissionError, match="not allowed"):
WebRequest()
def test_webrequest_init_allowed_ip(self):