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
8 changes: 4 additions & 4 deletions scripts/jobs/housing/housing_dwellings_list_gx_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class ExpectLLPGColumnValueLengthsBetween(gxe.ExpectColumnValueLengthsToBeBetwee

class ExpectBlockRefNoColumnValuesToMatchRegex(gxe.ExpectColumnValuesToMatchRegex):
column: str = "block_reference_number"
regex: str = r"^[0-9]\d+$"
description: str = "Expect Block Reference Number to match regex ^[0-9]\d+$ (numerical)"
regex: str = r"^\d+$"
description: str = "Expect Block Reference Number to match regex ^\d+$ (numerical)"


class ExpectLLPGColumnValuesToMatchRegex(gxe.ExpectColumnValuesToMatchRegex):
Expand All @@ -43,8 +43,8 @@ class ExpectLLPGColumnValuesToMatchRegex(gxe.ExpectColumnValuesToMatchRegex):

class ExpectEstateRefNoColumnValuesToMatchRegex(gxe.ExpectColumnValuesToMatchRegex):
column: str = "estate_reference_number"
regex: str = r"^[0-9]\d+$"
description: str = "Expect Estate Reference Number to match regex ^[0-9]\d+$ (numerical)"
regex: str = r"^\d+$"
description: str = "Expect Estate Reference Number to match regex ^\d+$ (numerical)"


class ExpectTenureValuesToBeInSet(gxe.ExpectColumnValuesToBeInSet):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ class ExpectPropNoColumnValuesToNotBeNull(gxe.ExpectColumnValuesToNotBeNull):

class ExpectPropNoNoColumnValuesToMatchRegex(gxe.ExpectColumnValuesToMatchRegex):
column: str = "property_no"
regex: str = r"^[0-9]\d+$"
description: str = "Expect Property Number Number to match regex ^[0-9]\d+$ (numerical)"
regex: str = r"^\d+$"
description: str = "Expect Property Number Number to match regex ^\d+$ (numerical)"


class ExpectPaymentRefNoColumnValuesToMatchRegex(gxe.ExpectColumnValuesToMatchRegex):
column: str = "payment_ref"
regex: str = r"^[0-9]\d+$"
description: str = "Expect Payment Reference Number to match regex ^[0-9]\d+$ (numerical)"
regex: str = r"^\d+$"
description: str = "Expect Payment Reference Number to match regex ^\d+$ (numerical)"


class ExpectTenureTypeColumnValuesToBeInSet(gxe.ExpectColumnValuesToBeInSet):
Expand Down
Loading