From 33d21e81ad194ca3600a8833c44640b151670c74 Mon Sep 17 00:00:00 2001 From: Edd Lewis - BGS Date: Thu, 21 Mar 2024 14:51:06 +0000 Subject: [PATCH] allow api --- test/integration/test_api.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/integration/test_api.py b/test/integration/test_api.py index c95c87c..15006c8 100644 --- a/test/integration/test_api.py +++ b/test/integration/test_api.py @@ -33,10 +33,9 @@ def test_openapi_json(client): # exposed endpoints assert '/validate' in response.text assert '/convert' in response.text - # hidden endpoints - assert '/ags_log' not in response.text - assert '/ags_export' not in response.text - assert '/ags_export_by_polygon' not in response.text + assert '/ags_log' in response.text + assert '/ags_export' in response.text + assert '/ags_export_by_polygon' in response.text @pytest.mark.parametrize('filename, expected',