diff --git a/tests/api/routers/test_institutions_api.py b/tests/api/routers/test_institutions_api.py index 1e3787a..5f0f2ae 100644 --- a/tests/api/routers/test_institutions_api.py +++ b/tests/api/routers/test_institutions_api.py @@ -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" ) @@ -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 ):