Use underscores to notate 1000s

This makes them a bit easier to read
This commit is contained in:
Chris Hill-Scott
2021-03-10 14:56:51 +00:00
parent ef50649572
commit 72acdee794

View File

@@ -100,22 +100,22 @@ def test_show_different_page_if_user_org_type_is_local(
'test@example.nhs.uk',
))
@pytest.mark.parametrize('inherited, posted, persisted, sms_limit', (
(None, 'central', 'central', 150000),
(None, 'nhs_central', 'nhs_central', 150000),
(None, 'nhs_gp', 'nhs_gp', 10000),
(None, 'nhs_local', 'nhs_local', 25000),
(None, 'local', 'local', 25000),
(None, 'emergency_service', 'emergency_service', 25000),
(None, 'school_or_college', 'school_or_college', 10000),
(None, 'other', 'other', 10000),
('central', None, 'central', 150000),
('nhs_central', None, 'nhs_central', 150000),
('nhs_local', None, 'nhs_local', 25000),
('local', None, 'local', 25000),
('emergency_service', None, 'emergency_service', 25000),
('school_or_college', None, 'school_or_college', 10000),
('other', None, 'other', 10000),
('central', 'local', 'central', 150000),
(None, 'central', 'central', 150_000),
(None, 'nhs_central', 'nhs_central', 150_000),
(None, 'nhs_gp', 'nhs_gp', 10_000),
(None, 'nhs_local', 'nhs_local', 25_000),
(None, 'local', 'local', 25_000),
(None, 'emergency_service', 'emergency_service', 25_000),
(None, 'school_or_college', 'school_or_college', 10_000),
(None, 'other', 'other', 10_000),
('central', None, 'central', 150_000),
('nhs_central', None, 'nhs_central', 150_000),
('nhs_local', None, 'nhs_local', 25_000),
('local', None, 'local', 25_000),
('emergency_service', None, 'emergency_service', 25_000),
('school_or_college', None, 'school_or_college', 10_000),
('other', None, 'other', 10_000),
('central', 'local', 'central', 150_000),
))
@freeze_time("2021-01-01")
def test_should_add_service_and_redirect_to_tour_when_no_services(