diff options
author | Chris Behrens <cbehrens@codestud.com> | 2011-05-25 20:10:25 +0000 |
---|---|---|
committer | Chris Behrens <cbehrens@codestud.com> | 2011-05-25 20:10:25 +0000 |
commit | bd0b4b87da9e960042c3d0caf00370ef526ce8b7 (patch) | |
tree | 9fa99a51a97288cfddd4a4cdd040d3d7e7cf7480 | |
parent | f2507b3cb77538c1434fea485c4861c11ef3f48b (diff) | |
download | nova-bd0b4b87da9e960042c3d0caf00370ef526ce8b7.tar.gz nova-bd0b4b87da9e960042c3d0caf00370ef526ce8b7.tar.xz nova-bd0b4b87da9e960042c3d0caf00370ef526ce8b7.zip |
fix test. instance is not updated in DB with admin password in the API anymore
-rw-r--r-- | nova/tests/api/openstack/test_servers.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/tests/api/openstack/test_servers.py b/nova/tests/api/openstack/test_servers.py index dc8815845..fbde5c9ce 100644 --- a/nova/tests/api/openstack/test_servers.py +++ b/nova/tests/api/openstack/test_servers.py @@ -774,8 +774,7 @@ class ServersTest(test.TestCase): def server_update(context, id, params): filtered_dict = dict( - display_name='server_test', - admin_pass='bacon', + display_name='server_test' ) self.assertEqual(params, filtered_dict) return filtered_dict |