Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/integration/test_error_propagation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down Expand Up @@ -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"},
Expand All @@ -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"},
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_data_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down