Add field numbering specification in module_util file, update unit tests

This commit is contained in:
beeankha
2020-04-30 13:54:39 -04:00
committed by AlanCoding
parent 31a11cf6bb
commit 6a9423626c
4 changed files with 13 additions and 11 deletions

View File

@@ -41,7 +41,6 @@ def test_password_no_op_warning(run_module, admin_user, mock_auth_stuff, silence
assert result.get('changed') # not actually desired, but assert for sanity
silence_warning.assert_called_once_with(
"The field password of user {0} has encrypted data and "
"may inaccurately report task is changed.".format(result['id'])
)
silence_warning.assert_has_calls(
[mock.call("The field password of user {0} has encrypted data and "
"may inaccurately report task is changed.".format(result['id']))])