From 52358ec5e738cb214973cdcf2f1c9cc822cc9c78 Mon Sep 17 00:00:00 2001 From: Bob Torgerson Date: Thu, 7 May 2026 10:32:57 -0800 Subject: [PATCH] Removes intentionally failing tests from ALFRESCO endpoint tests. --- tests/test_alfresco.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/tests/test_alfresco.py b/tests/test_alfresco.py index ce009dc8..932219ca 100644 --- a/tests/test_alfresco.py +++ b/tests/test_alfresco.py @@ -73,24 +73,6 @@ def test_alfresco_veg_type_local(client): assert actual_data == expected_data -def test_alfresco_flammability_invalid_area(client): - """ - Tests the /alfresco/flammability/area/ endpoint to ensure that a 422 error is returned for an invalid area. - """ - # Get the actual response from the endpoint - response = client.get("/alfresco/flammability/area/foobar") - assert response.status_code == 422 - - -def test_alfresco_veg_type_invalid_area(client): - """ - Tests the /alfresco/veg_type/area/ endpoint to ensure that a 422 error is returned for an invalid area. - """ - # Get the actual response from the endpoint - response = client.get("/alfresco/veg_type/area/foobar") - assert response.status_code == 422 - - def test_alfresco_flammability_invalid_local_str(client): """Tests the /alfresco/flammability/local// endpoint to ensure that a 400 error is returned for a string input.""" # Get the actual response from the endpoint