diff options
| author | matt.dietz@rackspace.com <> | 2011-03-17 20:45:18 +0000 |
|---|---|---|
| committer | matt.dietz@rackspace.com <> | 2011-03-17 20:45:18 +0000 |
| commit | 8d5ffa079e768adec969a4e8ab540c24a7faaaa6 (patch) | |
| tree | 573dee770a587a3e873387df93ee385d9b9c1bd4 | |
| parent | b605b53e4b652e0a3f364d505b5fd7240fd4ea36 (diff) | |
| download | nova-8d5ffa079e768adec969a4e8ab540c24a7faaaa6.tar.gz nova-8d5ffa079e768adec969a4e8ab540c24a7faaaa6.tar.xz nova-8d5ffa079e768adec969a4e8ab540c24a7faaaa6.zip | |
Pep8
| -rw-r--r-- | nova/tests/api/openstack/test_servers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/api/openstack/test_servers.py b/nova/tests/api/openstack/test_servers.py index 14b72e097..07ebfdd88 100644 --- a/nova/tests/api/openstack/test_servers.py +++ b/nova/tests/api/openstack/test_servers.py @@ -548,6 +548,7 @@ class ServersTest(test.TestCase): def test_resized_server_has_correct_status(self): req = self.webreq('/1', 'GET', dict(resize=dict(flavorId=3))) + def fake_migration_get(*args): return {} @@ -556,7 +557,6 @@ class ServersTest(test.TestCase): res = req.get_response(fakes.wsgi_app()) body = json.loads(res.body) self.assertEqual(body['server']['status'], 'resize-confirm') - def test_confirm_resize_server(self): req = self.webreq('/1/action', 'POST', dict(confirmResize=None)) |
