diff options
author | Matt Riedemann <mriedem@us.ibm.com> | 2014-03-09 08:52:05 -0700 |
---|---|---|
committer | Matt Riedemann <mriedem@us.ibm.com> | 2014-03-09 08:52:05 -0700 |
commit | 100c42ed15be5fc3ca52fb7cba0987e768a18a3f (patch) | |
tree | e89e319d7907cecce7af4742178f650fc0fe05d2 /nova/virt/driver.py | |
parent | 5a98d7b61fa6adb1557e69f2f234406be0e2739c (diff) | |
download | nova-100c42ed15be5fc3ca52fb7cba0987e768a18a3f.tar.gz |
Fix typo and add test for refresh_instance_security_rules
Change Ia36b0dfb adds virt driver API method
refresh_instance_security_rules but there is a typo in the method's
docstring and it needs to be covered in test_virt_drivers.py.
Closes-Bug: #1290036
Change-Id: Idacffe2087f0bec6290e3422d1e777376b489615
Diffstat (limited to 'nova/virt/driver.py')
-rw-r--r-- | nova/virt/driver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/driver.py b/nova/virt/driver.py index 5ed9974a7d..2172b9d345 100644 --- a/nova/virt/driver.py +++ b/nova/virt/driver.py @@ -819,7 +819,7 @@ class ComputeDriver(object): Gets called when an instance gets added to or removed from the security group the instance is a member of or if the - group gains or looses a rule. + group gains or loses a rule. """ raise NotImplementedError() |