From efc50b620e9638bbaba6c430e68446b66fa36c6e Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 29 Aug 2025 09:13:47 -0700 Subject: [PATCH] get rid of skips --- tests/app/organization/test_rest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/app/organization/test_rest.py b/tests/app/organization/test_rest.py index 1578802da..56af4b707 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -376,7 +376,7 @@ def test_update_other_organization_attributes_doesnt_clear_domains( def test_post_update_organization_to_nhs_type_updates_branding_if_none_present( admin_request, nhs_email_branding, notify_db_session, new_org_type ): - org = create_organization(organization_type="central") + org = create_organization(organization_type=OrganizationType.FEDERAL) data = { "organization_type": new_org_type, } @@ -404,7 +404,8 @@ def test_post_update_organization_to_nhs_type_does_not_update_branding_if_defaul ): current_branding = create_email_branding(logo="example.png", name="custom branding") org = create_organization( - organization_type="central", email_branding_id=current_branding.id + organization_type=OrganizationType.FEDERAL, + email_branding_id=current_branding.id, ) data = { "organization_type": new_org_type,