Fix the misspelling of "except"

Change-Id: I19a5b802faf88aeb522cf14f474d79d8e226ea34
This commit is contained in:
lijunjie 2019-01-04 17:30:30 +08:00
parent 7665ff4404
commit 9557516861
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ class ClientAuthTestCase(test.TestCase):
super(ClientAuthTestCase, self).setUp()
self.context = mock.Mock()
self.fake_client = mock.Mock()
self.execption_mod = fake_client_exception_class
self.exception_mod = fake_client_exception_class
self.auth = client_auth.AuthClientLoader(
self.fake_client, self.execption_mod, 'foo_group')
self.fake_client, self.exception_mod, 'foo_group')
def test_get_client_admin_true(self):
mock_load_session = self.mock_object(auth,