From: Yury Selivanov Date: Wed, 1 Jul 2015 01:18:27 +0000 (-0400) Subject: Issue #24400: Fix failing unittest X-Git-Tag: v3.5.0b3~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8a8f453c5a6d6549f4db826300a0817c7af09ccd;p=thirdparty%2FPython%2Fcpython.git Issue #24400: Fix failing unittest --- diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index ebd106c1d7ab..9307e21386f2 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -95,7 +95,7 @@ class TestPredicates(IsTestBase): count = len([x for x in dir(inspect) if x.startswith('is')]) # This test is here for remember you to update Doc/library/inspect.rst # which claims there are 16 such functions - expected = 19 + expected = 18 err_msg = "There are %d (not %d) is* functions" % (count, expected) self.assertEqual(count, expected, err_msg)