From f5311074b56854a9bc0e2c2d48a159b5cd8a1baf Mon Sep 17 00:00:00 2001 From: Adam <41971533+jcadam14@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:52:13 -0600 Subject: [PATCH] Linting --- tests/api/routers/test_institutions_api.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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 ):