summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorMatthew Hooker <matt@cloudscaling.com>2011-08-02 17:05:21 -0400
committerMatthew Hooker <matt@cloudscaling.com>2011-08-02 17:05:21 -0400
commit9bac11d9ff9933460f7ddf1bd1dd77d4d3397e47 (patch)
tree194c610eefc2e5c0f37c436bd2f7a0aa30af54cd /nova/tests
parentb5a4a8d6cc68fec2dab205c5da494bce69241c33 (diff)
fix failing tests
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/scheduler/test_scheduler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/scheduler/test_scheduler.py b/nova/tests/scheduler/test_scheduler.py
index a515636a3..0d7634d0d 100644
--- a/nova/tests/scheduler/test_scheduler.py
+++ b/nova/tests/scheduler/test_scheduler.py
@@ -51,10 +51,10 @@ FAKE_UUID = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'
class TestDriver(driver.Scheduler):
"""Scheduler Driver for Tests"""
- def schedule(self, context, topic, *args, **kwargs):
+ def schedule(context, topic, *args, **kwargs):
return 'fallback_host'
- def schedule_named_method(self, context, topic, num):
+ def schedule_named_method(context, topic, num):
return 'named_host'