Bump utils to 43.8.1

This brings in the change to stop TV numbers from being treated as
international numbers.
This commit is contained in:
Katie Smith
2021-01-29 15:08:56 +00:00
parent 86ea89cf76
commit fc9ecaba1d
3 changed files with 9 additions and 8 deletions

View File

@@ -362,7 +362,8 @@ def test_simulated_recipient(notify_api, to_address, notification_type, expected
@pytest.mark.parametrize('recipient, expected_international, expected_prefix, expected_units', [
('7900900123', False, '44', 1), # UK
('+447900900123', False, '44', 1), # UK
('07700900222', True, '44', 1), # UK (Jersey)
('07700910222', True, '44', 1), # UK (Jersey)
('07700900222', False, '44', 1), # TV number
('73122345678', True, '7', 1), # Russia
('360623400400', True, '36', 3)] # Hungary
)