summaryrefslogtreecommitdiffstats
path: root/nova/tests/hyperv_unittest.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/tests/hyperv_unittest.py')
-rw-r--r--nova/tests/hyperv_unittest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/hyperv_unittest.py b/nova/tests/hyperv_unittest.py
index 3980ae3cb..042819b9c 100644
--- a/nova/tests/hyperv_unittest.py
+++ b/nova/tests/hyperv_unittest.py
@@ -51,7 +51,7 @@ class HyperVTestCase(test.TestCase):
instance_ref = db.instance_create(self.context, instance)
conn = hyperv.get_connection(False)
- conn._create_vm(instance_ref) # pylint: disable-msg=W0212
+ conn._create_vm(instance_ref) # pylint: disable=W0212
found = [n for n in conn.list_instances()
if n == instance_ref['name']]
self.assertTrue(len(found) == 1)