From f5da72a5b61c9ad99830d4d9e979dc4f42fba828 Mon Sep 17 00:00:00 2001 From: tengqm Date: Mon, 16 Mar 2015 16:37:13 +0800 Subject: [PATCH] Fixed typo in policy_delete operation test case (engine) --- senlin/tests/engine/test_policies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/senlin/tests/engine/test_policies.py b/senlin/tests/engine/test_policies.py index 41eeeaf33..c4ea148a1 100644 --- a/senlin/tests/engine/test_policies.py +++ b/senlin/tests/engine/test_policies.py @@ -354,6 +354,6 @@ class PolicyTest(base.SenlinTestCase): def test_policy_delete_not_found(self): ex = self.assertRaises(rpc.ExpectedException, - self.eng.policy_get, self.ctx, 'Bogus') + self.eng.policy_delete, self.ctx, 'Bogus') self.assertEqual(exception.PolicyNotFound, ex.exc_info[0])