1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-17 01:11:28 +00:00

nmcli: Fix yaml formatting

This commit is contained in:
Manuel Gayer 2021-08-31 17:58:37 +02:00
parent 7bbc0bfee7
commit ed1a42cc83
2 changed files with 3 additions and 3 deletions

View file

@ -2241,7 +2241,7 @@ def test_create_gsm(mocked_generic_connection_create, capfd):
'gsm.apn', 'internet.telekom',
'gsm.username', 't-mobile',
'gsm.password', 'tm',
'gsm.pin', '1234',]:
'gsm.pin', '1234']:
assert param in args_text
out, err = capfd.readouterr()
@ -2269,7 +2269,7 @@ def test_gsm_mod(mocked_generic_connection_modify, capfd):
args_text = list(map(to_text, args[0]))
for param in ['gsm.username', 't-mobile',
'gsm.password', 'tm',]:
'gsm.password', 'tm']:
assert param in args_text
out, err = capfd.readouterr()