From 5c51530c9bd7b189857f1359fc8917781ec112ef Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 28 Oct 2024 08:45:14 -0700 Subject: [PATCH] fix test --- tests/app/organization/test_rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/organization/test_rest.py b/tests/app/organization/test_rest.py index e7d2b4ab8..a9d7db135 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -934,7 +934,7 @@ def test_get_organization_services_usage_returns_400_if_year_is_empty(admin_requ def test_valid_request_args(): request = Mock() - request.args = {"ord_id": "123", "name": "Test Org"} + request.args = {"org_id": "123", "name": "Test Org"} org_id, name = check_request_args(request) assert org_id == "123" assert name == "Test Org"