Pull in version of utils that validates postcodes for CSVs

This will mean that a user can not send a CSV for letters with invalid
postcodes and must fix their data.

See https://github.com/alphagov/notifications-utils/pull/704
This commit is contained in:
David McDonald
2020-03-12 17:19:57 +00:00
parent e66f189b88
commit 39fe27be39
4 changed files with 22 additions and 9 deletions

View File

@@ -44,6 +44,16 @@ MockRecipients = namedtuple(
'email',
['fix 3 email addresses']
),
(
{2}, [], [], [],
'letter',
['fix 1 address']
),
(
{2, 4}, [], [], [],
'letter',
['fix 2 addresses']
),
(
{2}, {3}, [], [],
'sms',