summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-05-29 21:12:21 +0000
committerGerrit Code Review <review@openstack.org>2013-05-29 21:12:21 +0000
commit5a1e8e15d7f79bbdbe135315bf5be3b7ce6563af (patch)
tree90fa1fd4e6c926069dc0f8d7a6a1dd80fa517832 /nova/tests
parent987a1c5a50b4291f5d6ca21ab41b866f108c58f9 (diff)
parentda2638b0e04f77e10b54ca4622e863319896aa53 (diff)
Merge "Raise AgentBuildNotFound on updating/destroying deleted object"
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/test_db_api.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/tests/test_db_api.py b/nova/tests/test_db_api.py
index 19607a2db..8dbfa7010 100644
--- a/nova/tests/test_db_api.py
+++ b/nova/tests/test_db_api.py
@@ -4083,14 +4083,12 @@ class AgentBuildTestCase(test.TestCase, ModelsObjectComparatorMixin):
db.agent_build_update(self.ctxt, agent_build.id, {'os': 'ReactOS'})
self.assertEqual('ReactOS', db.agent_build_get_all(self.ctxt)[0].os)
- @test.testtools.skip("bug 1181967")
def test_agent_build_destroy_destroyed(self):
agent_build = db.agent_build_create(self.ctxt, {})
db.agent_build_destroy(self.ctxt, agent_build.id)
self.assertRaises(exception.AgentBuildNotFound,
db.agent_build_destroy, self.ctxt, agent_build.id)
- @test.testtools.skip("bug 1181967")
def test_agent_build_update_destroyed(self):
agent_build = db.agent_build_create(self.ctxt, {'os': 'HaikuOS'})
db.agent_build_destroy(self.ctxt, agent_build.id)