From 5e21f555d4c5ff1b0dd5eab91ab54e55a707929a Mon Sep 17 00:00:00 2001 From: kkaris Date: Thu, 25 Jul 2024 10:48:39 -0700 Subject: [PATCH] Change key to align with rest api --- indra/tests/test_rest_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/tests/test_rest_api.py b/indra/tests/test_rest_api.py index 5737a05eb4..26f62ea350 100644 --- a/indra/tests/test_rest_api.py +++ b/indra/tests/test_rest_api.py @@ -853,7 +853,7 @@ def test_reach_process_json(): @pytest.mark.nogha def test_reach_process_pmc(): - res = _call_api('post', 'reach/process_pmc', json={'pmcid': 'PMC4338247'}) + res = _call_api('post', 'reach/process_pmc', json={'pmc_id': 'PMC4338247'}) res_json = json.loads(res.get_data()) assert 'statements' in res_json.keys(), res_json stmts = stmts_from_json(res_json['statements'])