mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 10:40:32 -07:00
[PR #9662/4d384bd7 backport][stable-10] test helper: fix parameter passing in creation static method (#9663)
test helper: fix parameter passing in creation static method (#9662)
(cherry picked from commit 4d384bd74a
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
c6aecd18f4
commit
7e4a39964e
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Helper(object):
|
||||||
test_module = sys.modules[test_module_name]
|
test_module = sys.modules[test_module_name]
|
||||||
if test_spec is None:
|
if test_spec is None:
|
||||||
test_spec = test_module.__file__.replace('.py', '.yaml')
|
test_spec = test_module.__file__.replace('.py', '.yaml')
|
||||||
return Helper.from_file(test_module, ansible_module, test_spec)
|
return Helper.from_file(test_module, ansible_module, test_spec, mocks=mocks)
|
||||||
|
|
||||||
def add_func_to_test_module(self, name, func):
|
def add_func_to_test_module(self, name, func):
|
||||||
setattr(self.test_module, name, func)
|
setattr(self.test_module, name, func)
|
||||||
|
|
Loading…
Add table
Reference in a new issue