blunt rename of org (#620)

This commit is contained in:
Steven Reilly
2023-07-12 12:09:44 -04:00
committed by GitHub
parent 5fe81bc040
commit 13d0e46b52
107 changed files with 1471 additions and 1471 deletions

View File

@@ -75,29 +75,29 @@ def _get_example_performance_data():
],
"services_using_notify": [
{
"organisation_id": uuid.uuid4(),
"organisation_name": "Department of Examples and Patterns",
"organization_id": uuid.uuid4(),
"organization_name": "Department of Examples and Patterns",
"service_id": uuid.uuid4(),
"service_name": "Example service"
},
{
"organisation_id": uuid.uuid4(),
"organisation_name": "Department of Examples and Patterns",
"organization_id": uuid.uuid4(),
"organization_name": "Department of Examples and Patterns",
"service_id": uuid.uuid4(),
"service_name": "Example service 2"
},
{
"organisation_id": uuid.uuid4(),
"organisation_name": "Department of One Service",
"organization_id": uuid.uuid4(),
"organization_name": "Department of One Service",
"service_id": uuid.uuid4(),
"service_name": "Example service 3"
},
{
# On production there should be no live services without an
# organisation, but this isnt always true in peoples local
# organization, but this isnt always true in peoples local
# environments
"organisation_id": None,
"organisation_name": None,
"organization_id": None,
"organization_name": None,
"service_id": uuid.uuid4(),
"service_name": "Example service 4"
},
@@ -109,7 +109,7 @@ def _get_example_performance_data():
def test_should_render_performance_page(
mocker,
client_request,
mock_get_service_and_organisation_counts,
mock_get_service_and_organization_counts,
):
mock_get_performance_data = mocker.patch(
'app.performance_dashboard_api_client.get_performance_dashboard_stats',