Refactor use ServiceOnOffForm

We no longer need a custom form object here – ServiceOnOffForm does the
same job of turning strings to booleans and back again.
This commit is contained in:
Chris Hill-Scott
2020-05-29 09:55:34 +01:00
parent cd398ab55c
commit 24f0b172f4
3 changed files with 8 additions and 18 deletions

View File

@@ -3788,8 +3788,8 @@ def test_broadcast_service_cant_post_to_set_other_channels_endpoint(
@pytest.mark.parametrize('permissions, expected_checked', [
(['international_sms'], 'on'),
([''], 'off'),
(['international_sms'], 'True'),
([''], 'False'),
])
def test_show_international_sms_as_radio_button(
client_request,
@@ -3812,8 +3812,8 @@ def test_show_international_sms_as_radio_button(
@pytest.mark.parametrize('post_value, international_sms_permission_expected_in_api_call', [
('on', True),
('off', False),
('True', True),
('False', False),
])
def test_switch_service_enable_international_sms(
client_request,