Skip to content

Commit

Permalink
[PRMP-1487] fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
NogaNHS committed Feb 3, 2025
1 parent 4ff11f7 commit d005cb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lambdas/tests/unit/utils/test_lloyd_george_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,8 +903,8 @@ def test_parse_pds_response_return_the_patient_object(
):
actual = parse_pds_response(mock_valid_pds_response)
assert actual.id == "9000000002"
assert actual.name[0].given == ["jane"]
assert actual.name[0].family == "smith"
assert actual.name[0].given == ["Jane"]
assert actual.name[0].family == "Smith"


def test_parse_pds_response_raise_error_when_model_validation_failed():
Expand Down

0 comments on commit d005cb7

Please sign in to comment.