From 5ca7e7c6ae797ec738cde6ac85435b4e3931775d Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Mon, 17 Feb 2014 12:17:33 +0200 Subject: [PATCH] Use `HttpNotImplemented` in `tests.v3.test_trusts` Since we are moved to usage exceptions from oslo, `HTTPNotImplemented` was renamed to `HttpNotImplemented`, so we need to change usage of this exception in tests. Related to blueprint common-client-library-2 Change-Id: I51f6593ebb86267dad7086d4862a135743f2de7f --- keystoneclient/tests/v3/test_trusts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keystoneclient/tests/v3/test_trusts.py b/keystoneclient/tests/v3/test_trusts.py index 79c616b38..f47fc7fd3 100644 --- a/keystoneclient/tests/v3/test_trusts.py +++ b/keystoneclient/tests/v3/test_trusts.py @@ -97,4 +97,4 @@ class TrustTests(utils.TestCase, utils.CrudTests): def test_update(self): # Update not supported for the OS-TRUST API - self.assertRaises(exceptions.HTTPNotImplemented, self.manager.update) + self.assertRaises(exceptions.HttpNotImplemented, self.manager.update)