From 048678fc774bace19687976133d296a168488c59 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 8 Oct 2008 01:00:44 -0600 Subject: Fixed two PEP 257 violations I missed in test_plugable.py --- tests/test_ipalib/test_plugable.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_ipalib/test_plugable.py') 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): -- cgit