Skip to content

Commit

Permalink
black linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-barraza committed Nov 26, 2024
1 parent 293cbac commit 07247a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion auth-api/tests/unit/services/test_org.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,8 @@ def test_update_org(session, monkeypatch): # pylint:disable=unused-argument

dictionary = org.as_dict()
assert dictionary["business_type"] == TestOrgInfo.update_org_with_business_type["businessType"]



def test_update_org_address(session, monkeypatch):
"""Assert that an Org address can be updated."""
org = factory_org_service()
Expand Down
4 changes: 2 additions & 2 deletions auth-api/tests/utilities/factory_scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,14 +450,14 @@ class TestOrgInfo(dict, Enum):
org_regular = {"name": "My Test Org", "accessType": AccessType.REGULAR.value}

update_org_with_business_type = {"businessType": "LAW", "businessSize": "2-5", "isBusinessAccount": True}

update_org_address = {
"mailingAddress": {
"street": "1234 Abcd Street",
"city": "Test",
"region": "BC",
"postalCode": "T1T1T1",
"country": "CA"
"country": "CA",
}
}

Expand Down

0 comments on commit 07247a3

Please sign in to comment.