diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-05-08 21:16:29 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-05-08 21:16:29 +0000 |
| commit | 8b4e3d6e5537e171bc4bdd7a10898cacb5dbe5b6 (patch) | |
| tree | 4fada395a3d15e69514091e901f020695614e1c8 /nova/tests | |
| parent | 4e61f415c4cbddcffefc05008acce1f96b51a6b1 (diff) | |
| parent | 2e35d7177830e16abd3e919510437f48c6691d51 (diff) | |
Merge "Session cleanup for db.floating_ip_* methods"
Diffstat (limited to 'nova/tests')
| -rw-r--r-- | nova/tests/test_db_api.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/tests/test_db_api.py b/nova/tests/test_db_api.py index e298b7e03..cfed3ab3b 100644 --- a/nova/tests/test_db_api.py +++ b/nova/tests/test_db_api.py @@ -2752,8 +2752,7 @@ class FloatingIpTestCase(test.TestCase, ModelsObjectComparatorMixin): ctxt = context.RequestContext(user_id='a', project_id='abc', is_admin=False) self.assertRaises(exception.NotAuthorized, - db.floating_ip_count_by_project, - ctxt, 'def', 'does_not_matter') + db.floating_ip_count_by_project, ctxt, 'def') def _create_fixed_ip(self, params): default_params = {'address': '192.168.0.1'} |
