diff options
author | Brian Coca <bcoca@users.noreply.github.com> | 2022-04-14 17:23:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-14 17:23:06 +0200 |
commit | 3b9592fcafdf4aea76a188622c6199ba7f5bd27c (patch) | |
tree | 32d081abd6c0184a1f581ba7ba20225faf891844 /test/units/plugins | |
parent | Steering Committee: add new member (#77529) (diff) | |
download | ansible-3b9592fcafdf4aea76a188622c6199ba7f5bd27c.tar.xz ansible-3b9592fcafdf4aea76a188622c6199ba7f5bd27c.zip |
Move to display as single source of verbosity (#77498)
* Move to display as single source of verbosity
Co-authored-by: Sloane Hertel <19572925+s-hertel@users.noreply.github.com>
Diffstat (limited to 'test/units/plugins')
-rw-r--r-- | test/units/plugins/action/test_action.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/units/plugins/action/test_action.py b/test/units/plugins/action/test_action.py index a36e228534..0a50bdd465 100644 --- a/test/units/plugins/action/test_action.py +++ b/test/units/plugins/action/test_action.py @@ -308,7 +308,6 @@ class TestActionBase(unittest.TestCase): # ssh error action_base._low_level_execute_command.return_value = dict(rc=255, stdout='', stderr='') self.assertRaises(AnsibleError, action_base._make_tmp_path, 'root') - play_context.verbosity = 5 self.assertRaises(AnsibleError, action_base._make_tmp_path, 'root') # general error |