From: Georg Brandl Date: Mon, 3 Mar 2008 20:39:00 +0000 (+0000) Subject: 15 -> 16, the 2nd X-Git-Tag: v2.6a2~412 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26bc177fe6b1710cc306adee3be17145db4686ca;p=python 15 -> 16, the 2nd --- diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 06f6b94c85..ef84f44f6c 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -53,7 +53,7 @@ class TestPredicates(IsTestBase): def test_sixteen(self): count = len(filter(lambda x:x.startswith('is'), dir(inspect))) # This test is here for remember you to update Doc/library/inspect.rst - # which claims there are 15 such functions + # which claims there are 16 such functions expected = 16 err_msg = "There are %d (not %d) is* functions" % (count, expected) self.assertEqual(count, expected, err_msg)