From b62239da85ea222aefefe90d60dca0b8c212a25d Mon Sep 17 00:00:00 2001 From: Thomas Leese Date: Tue, 24 Mar 2026 12:49:54 +0000 Subject: [PATCH] Rename school search `type` to `gias_school` Previously this location type was known as `school` but has been renamed to `gias_school` to make it clearer what this type represents. Jira-Issue: MAV-5556 --- mavis/test/data_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mavis/test/data_models.py b/mavis/test/data_models.py index dc1d8c66934..6b701863cdf 100644 --- a/mavis/test/data_models.py +++ b/mavis/test/data_models.py @@ -71,7 +71,7 @@ def get_from_testing_api( def _get_schools_with_year_group(year_group: int) -> list[School]: url = urllib.parse.urljoin(base_url, "api/testing/locations") params = { - "type": "school", + "type": "gias_school", "status": "open", "is_attached_to_team": "false", "gias_year_groups[]": [str(year_group)],