From 8d03f8041998418206642f87314fbaadf76ea93a Mon Sep 17 00:00:00 2001 From: Yuriy Novostavskiy Date: Fri, 29 Nov 2024 14:30:29 +0000 Subject: [PATCH] attempt to fix unit test unit test was missing initially --- tests/unit/module_utils/test_helm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/module_utils/test_helm.py b/tests/unit/module_utils/test_helm.py index c4b09e4083..ec181b2d93 100644 --- a/tests/unit/module_utils/test_helm.py +++ b/tests/unit/module_utils/test_helm.py @@ -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 )