From 9df079458e9728c3729c3102c29c7af53b64dfe1 Mon Sep 17 00:00:00 2001 From: Mialy DeFelice <85905780+mialy-defelice@users.noreply.github.com> Date: Thu, 9 May 2024 11:03:14 -0700 Subject: [PATCH] fix failing test to conform to data model updates --- tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index f8ff09d4a..a070297ab 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -383,7 +383,7 @@ def test_get_node_validation_rules(test, client, data_model_jsonld): ) response_dta = json.loads(response.data) assert response.status_code == 200 - assert "list strict" in response_dta + assert "list" in response_dta assert "regex match [a-f]" in response_dta def test_get_nodes_display_names(test, client, data_model_jsonld):