adds 'success_msg' to valid args for assert module (#47030)
This commit is contained in:
parent
748ea39ecd
commit
0661f2f213
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ class ActionModule(ActionBase):
|
||||||
''' Fail with custom message '''
|
''' Fail with custom message '''
|
||||||
|
|
||||||
TRANSFERS_FILES = False
|
TRANSFERS_FILES = False
|
||||||
_VALID_ARGS = frozenset(('fail_msg', 'msg', 'that'))
|
_VALID_ARGS = frozenset(('fail_msg', 'msg', 'success_msg', 'that'))
|
||||||
|
|
||||||
def run(self, tmp=None, task_vars=None):
|
def run(self, tmp=None, task_vars=None):
|
||||||
if task_vars is None:
|
if task_vars is None:
|
||||||
|
|
Loading…
Reference in a new issue