From 6697b955eea6c5170cd68fef130d415ef3fa69cc Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Tue, 2 Sep 2008 16:42:39 +0000 Subject: 227: check_type() and check_isinstance() now take arguments in (value, type_, name) order so the first two match the built-in isinstance() call signature --- ipalib/tests/test_public.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/tests/test_public.py') diff --git a/ipalib/tests/test_public.py b/ipalib/tests/test_public.py index b34e4875..84be3c6d 100644 --- a/ipalib/tests/test_public.py +++ b/ipalib/tests/test_public.py @@ -117,8 +117,8 @@ class test_Option2(ClassChecker): """ Tests the `public.Option2.__init__` method. """ - name = 'sn', - doc = 'Last Name', + name = 'sn' + doc = 'Last Name' type_ = ipa_types.Unicode() o = self.cls(name, doc, type_) assert o.__islocked__() is True -- cgit