diff --git a/tests/integration/test_error_propagation.py b/tests/integration/test_error_propagation.py index 458fdff..9976d08 100644 --- a/tests/integration/test_error_propagation.py +++ b/tests/integration/test_error_propagation.py @@ -42,6 +42,7 @@ def test_notice_generation_raises_on_language_mismatch(self, tmp_path): "first_name": "Test", "last_name": "", "date_of_birth_display": "2010-01-01", + "over_16": False, }, school={"name": "Test School"}, board={"name": "Test Board"}, @@ -96,6 +97,7 @@ def test_notice_generation_returns_all_or_nothing(self, tmp_path): "first_name": "Alice", "last_name": "", "date_of_birth_display": "2010-01-01", + "over_16": False, }, school={"name": "Test School"}, board={"name": "Test Board"}, @@ -118,6 +120,7 @@ def test_notice_generation_returns_all_or_nothing(self, tmp_path): "first_name": "Bob", "last_name": "", "date_of_birth_display": "2010-02-02", + "over_16": False, }, school={"name": "Test School"}, board={"name": "Test Board"}, diff --git a/tests/unit/test_data_models.py b/tests/unit/test_data_models.py index 91d44ee..049f609 100644 --- a/tests/unit/test_data_models.py +++ b/tests/unit/test_data_models.py @@ -34,7 +34,7 @@ def test_client_record_creation(self) -> None: sequence="00001", client_id="C00001", language="en", - person={"first_name": "Alice", "last_name": "Zephyr"}, + person={"first_name": "Alice", "last_name": "Zephyr", "over_16": False}, school={"name": "Tunnel Academy"}, board={"name": "Guelph Board"}, contact={"street": "123 Main St"},