]> granicus.if.org Git - python/commitdiff
Issue #24400: Fix failing unittest
authorYury Selivanov <yselivanov@sprymix.com>
Wed, 1 Jul 2015 01:18:27 +0000 (21:18 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Wed, 1 Jul 2015 01:18:27 +0000 (21:18 -0400)
Lib/test/test_inspect.py

index ebd106c1d7ab3b9d3400006617b00f570ed612cb..9307e21386f24ac5af85f3b2b1ae8e888e34e1a8 100644 (file)
@@ -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)