attempt to fix unit test

unit test was missing initially
This commit is contained in:
Yuriy Novostavskiy
2024-11-29 14:30:29 +00:00
parent 82f00df724
commit 187efa0a62

View File

@@ -242,7 +242,7 @@ def test_module_run_helm_command(_ansible_helm_module):
assert (rc, out, err) == (0, output, error)
_ansible_helm_module.run_command.assert_called_once_with(
command, environ_update=env_update
command, environ_update=env_update, data=None
)