From d69dffa67794813829e645810ec5864e9747feb7 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 26 May 2023 07:35:59 -0700 Subject: [PATCH] remove nhs test --- .../views/organisations/test_organisations.py | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/tests/app/main/views/organisations/test_organisations.py b/tests/app/main/views/organisations/test_organisations.py index 4c7b03834..6fb404aab 100644 --- a/tests/app/main/views/organisations/test_organisations.py +++ b/tests/app/main/views/organisations/test_organisations.py @@ -398,33 +398,6 @@ def test_validation_of_gps_creating_organisations( assert expected_error in page.select_one('.govuk-error-message, .error-message').text -@pytest.mark.g(reason='Update for TTS') -def test_nhs_local_assigns_to_selected_organisation( - client_request, - mocker, - service_one, - mock_get_organisation, - mock_update_service_organisation, -): - mocker.patch( - 'app.models.organisation.AllOrganisations.client_method', - return_value=[ - organisation_json(ORGANISATION_ID, 'Trust 1', organisation_type='nhs_local'), - ], - ) - service_one['organisation_type'] = 'nhs_local' - - client_request.post( - '.add_organisation_from_nhs_local_service', - service_id=SERVICE_ONE_ID, - _data={ - 'organisations': ORGANISATION_ID, - }, - _expected_status=302, - ) - mock_update_service_organisation.assert_called_once_with(SERVICE_ONE_ID, ORGANISATION_ID) - - @freeze_time("2020-02-20 20:20") def test_organisation_services_shows_live_services_and_usage( client_request,