Fixed few typo's: "Mutiple" to "Multiple" (#64543)
Signed-off-by: Satyajit Bulage <sbulage@redhat.com>
This commit is contained in:
parent
023a9b3166
commit
98b6b98287
3 changed files with 3 additions and 3 deletions
|
@ -152,7 +152,7 @@ options:
|
||||||
disk_size:
|
disk_size:
|
||||||
description:
|
description:
|
||||||
- The size of the disk created for new instances (in MB, GB, TB,...).
|
- The size of the disk created for new instances (in MB, GB, TB,...).
|
||||||
- NOTE':' If The Template hats Mutiple Disks the Order of the Sizes is
|
- NOTE':' If The Template hats Multiple Disks the Order of the Sizes is
|
||||||
- matched against the order specified in C(template_id)/C(template_name).
|
- matched against the order specified in C(template_id)/C(template_name).
|
||||||
cpu:
|
cpu:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -185,7 +185,7 @@ class NetAppOntapVscanOnAccessPolicy(object):
|
||||||
if int(result.get_child_content('num-records')) == 1:
|
if int(result.get_child_content('num-records')) == 1:
|
||||||
return result
|
return result
|
||||||
elif int(result.get_child_content('num-records')) > 1:
|
elif int(result.get_child_content('num-records')) > 1:
|
||||||
self.module.fail_json(msg='Mutiple Vscan on Access Policy matching %s:' % self.policy_name)
|
self.module.fail_json(msg='Multiple Vscan on Access Policy matching %s:' % self.policy_name)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def create_on_access_policy(self):
|
def create_on_access_policy(self):
|
||||||
|
|
|
@ -252,7 +252,7 @@ class TestMyModule(unittest.TestCase):
|
||||||
self.get_mock_object('policy').apply()
|
self.get_mock_object('policy').apply()
|
||||||
assert exc.value.args[0]['changed']
|
assert exc.value.args[0]['changed']
|
||||||
|
|
||||||
def test_successful_modify_mutiple_ips(self):
|
def test_successful_modify_multiple_ips(self):
|
||||||
''' Test successful modify allow_list '''
|
''' Test successful modify allow_list '''
|
||||||
data = self.mock_policy_args()
|
data = self.mock_policy_args()
|
||||||
data['allow_list'] = ['1.2.0.0/16', '1.0.0.0/8']
|
data['allow_list'] = ['1.2.0.0/16', '1.0.0.0/8']
|
||||||
|
|
Loading…
Reference in a new issue