Fix a typo

TrivialFix

Change-Id: I4960bf73edef11f181655d09b9192e7ca2e5678b
This commit is contained in:
gecong1973 2016-10-04 13:56:36 +08:00
parent c07bd76eac
commit 1c406067af
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class TestCase(BaseTestCase):
cls.manager = cls.manager_class() cls.manager = cls.manager_class()
for attr_name in cls.manager.client_attr_names: for attr_name in cls.manager.client_attr_names:
# Ensure that pre-existing class attributes won't be # Ensure that pre-existing class attributes won't be
# accidentally overriden. # accidentally overridden.
assert not hasattr(cls, attr_name) assert not hasattr(cls, attr_name)
client = getattr(cls.manager, attr_name) client = getattr(cls.manager, attr_name)
setattr(cls, attr_name, client) setattr(cls, attr_name, client)