test helper: fix parameter passing in creation static method (#9662)

pull/8165/head^2
Alexei Znamensky 2025-02-01 22:58:45 +13:00 committed by GitHub
parent 5f157aac15
commit 4d384bd74a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)