summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorAlex Meade <alex.meade@rackspace.com>2011-06-06 10:49:29 -0400
committerAlex Meade <alex.meade@rackspace.com>2011-06-06 10:49:29 -0400
commitec5e5bcd3592dca44d1d71455ccd99e2c7f24d26 (patch)
treee05568df34f6cf9cc984acbfd8a1ca9bec8288a8 /nova/tests
parent9c38da46d121e65707346473e6d51da3a2cf021f (diff)
Small pylint fixes
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/xenapi/stubs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/xenapi/stubs.py b/nova/tests/xenapi/stubs.py
index 35308d95f..5d2d1641a 100644
--- a/nova/tests/xenapi/stubs.py
+++ b/nova/tests/xenapi/stubs.py
@@ -251,10 +251,10 @@ class FakeSessionForMigrationTests(fake.SessionBase):
def __init__(self, uri):
super(FakeSessionForMigrationTests, self).__init__(uri)
- def VDI_get_by_uuid(*args):
+ def VDI_get_by_uuid(self, *args):
return 'hurr'
- def VDI_resize_online(*args):
+ def VDI_resize_online(self, *args):
pass
def VM_start(self, _1, ref, _2, _3):