Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-barraza committed Nov 26, 2024
1 parent 07247a3 commit ce59cbb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions auth-api/tests/unit/services/test_org.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ce59cbb

Please sign in to comment.