diff --git a/auth-api/tests/unit/services/test_org.py b/auth-api/tests/unit/services/test_org.py index d6ca24b41..6585ef902 100644 --- a/auth-api/tests/unit/services/test_org.py +++ b/auth-api/tests/unit/services/test_org.py @@ -634,9 +634,11 @@ def test_update_org(session, monkeypatch): # pylint:disable=unused-argument def test_update_org_address(session, monkeypatch): """Assert that an Org address can be updated.""" org = factory_org_service() - org.update_org(TestOrgInfo.update_org_address) + org.update_org_address(TestOrgInfo.update_org_address) dictionary = org.as_dict() - assert dictionary["mailing_address"] == TestOrgInfo.update_org_address["mailingAddress"] + print('dictionary', dictionary) + print('TestOrgInfo.update_org_address', TestOrgInfo.update_org_address) + assert dictionary["mailing_address"] == TestOrgInfo.update_org_address["mailingAddress"] def test_suspend_org(session, monkeypatch): # pylint:disable=unused-argument