Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jcadam14 committed Oct 1, 2024
1 parent e7485f7 commit f531107
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/api/routers/test_institutions_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,7 @@ def test_create_institution_authed(self, mocker: MockerFixture, app_fixture: Fas
assert res.status_code == 200
assert res.json()[1].get("name") == "testName"



def test_empty_state_field(
self, mocker: MockerFixture, app_fixture: FastAPI, authed_user_mock: Mock
):
def test_empty_state_field(self, mocker: MockerFixture, app_fixture: FastAPI, authed_user_mock: Mock):
upsert_institution_mock = mocker.patch(
"regtech_user_fi_management.entities.repos.institutions_repo.upsert_institution"
)
Expand Down Expand Up @@ -216,8 +212,6 @@ def test_empty_state_field(
assert res.status_code == 200
assert res.json()[1].get("hq_address_state") is None



def test_create_institution_only_required_fields(
self, mocker: MockerFixture, app_fixture: FastAPI, authed_user_mock: Mock
):
Expand Down

0 comments on commit f531107

Please sign in to comment.