Issue #24400: Fix failing unittest

This commit is contained in:
Yury Selivanov 2015-06-30 21:18:27 -04:00
parent 88632d72f2
commit 8a8f453c5a
1 changed files with 1 additions and 1 deletions

View 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)