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
This commit is contained in:
Andrey Kurilin
2014-02-17 12:17:33 +02:00
committed by Gerrit Code Review
parent 61544f01d4
commit 5ca7e7c6ae

View File

@@ -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)