diff --git a/backend/condition/tests/parsing/test_lbwf_parser.py b/backend/condition/tests/parsing/test_lbwf_parser.py index 6a93979a..e962f229 100644 --- a/backend/condition/tests/parsing/test_lbwf_parser.py +++ b/backend/condition/tests/parsing/test_lbwf_parser.py @@ -114,5 +114,8 @@ def test_lbwf_parser_passes_houses(lbwf_homes_xlsx_bytes): result: Any = parser.parse(lbwf_homes_xlsx_bytes) # assert + # TODO: Improve these asserts assert len(result) == 2 - assert isinstance(result[0], LbwfAssetCondition) # TODO: Improve these asserts + assert isinstance(result[0], LbwfAssetCondition) + assert result[0].uprn == 1 + assert result[1].uprn == 2 \ No newline at end of file