diff --git a/lib/ansible/modules/storage/netapp/na_ontap_command.py b/lib/ansible/modules/storage/netapp/na_ontap_command.py index 3258b3520f0..1af0bb7c57e 100644 --- a/lib/ansible/modules/storage/netapp/na_ontap_command.py +++ b/lib/ansible/modules/storage/netapp/na_ontap_command.py @@ -17,7 +17,7 @@ description: extends_documentation_fragment: - netapp.na_ontap module: na_ontap_command -short_description: "NetApp ONTAP Run any cli command" +short_description: NetApp ONTAP Run any cli command, the username provided needs to have console login permission. version_added: "2.7" options: command: diff --git a/test/units/modules/storage/netapp/test_na_ontap_command.py b/test/units/modules/storage/netapp/test_na_ontap_command.py index 184ae3a41a2..4b5af4abdc8 100644 --- a/test/units/modules/storage/netapp/test_na_ontap_command.py +++ b/test/units/modules/storage/netapp/test_na_ontap_command.py @@ -106,9 +106,9 @@ class TestMyModule(unittest.TestCase): def set_default_args(vsim=False): ''' populate hostname/username/password ''' if vsim: - hostname = '10.193.78.219' + hostname = '10.10.10.10' username = 'admin' - password = 'netapp1!' + password = 'admin' else: hostname = 'hostname' username = 'username'