summaryrefslogtreecommitdiffstats
path: root/tests/test_ipalib/test_plugable.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-10-08 01:00:44 -0600
committerJason Gerard DeRose <jderose@redhat.com>2008-10-08 01:00:44 -0600
commit048678fc774bace19687976133d296a168488c59 (patch)
treea36bcb02dfc7a194d247c3dfb247c6798aafeadd /tests/test_ipalib/test_plugable.py
parentad2cd6560b9fb45ee1b8c52213f3d36eac70bec7 (diff)
downloadfreeipa-048678fc774bace19687976133d296a168488c59.tar.gz
freeipa-048678fc774bace19687976133d296a168488c59.tar.xz
freeipa-048678fc774bace19687976133d296a168488c59.zip
Fixed two PEP 257 violations I missed in test_plugable.py
Diffstat (limited to 'tests/test_ipalib/test_plugable.py')
-rw-r--r--tests/test_ipalib/test_plugable.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_ipalib/test_plugable.py b/tests/test_ipalib/test_plugable.py
index 3cdf1808..dec893a9 100644
--- a/tests/test_ipalib/test_plugable.py
+++ b/tests/test_ipalib/test_plugable.py
@@ -231,13 +231,13 @@ class test_DictProxy(ClassChecker):
class test_MagicDict(ClassChecker):
"""
- Tests the `ipalib.plugable.MagicDict` class.
+ Test the `ipalib.plugable.MagicDict` class.
"""
_cls = plugable.MagicDict
def test_class(self):
"""
- Tests the `ipalib.plugable.MagicDict` class.
+ Test the `ipalib.plugable.MagicDict` class.
"""
assert self.cls.__bases__ == (plugable.DictProxy,)
for non_dict in ('hello', 69, object):