Commit 26bc177f authored by Georg Brandl's avatar Georg Brandl

15 -> 16, the 2nd

parent 3e9d66fe
...@@ -53,7 +53,7 @@ class TestPredicates(IsTestBase): ...@@ -53,7 +53,7 @@ class TestPredicates(IsTestBase):
def test_sixteen(self): def test_sixteen(self):
count = len(filter(lambda x:x.startswith('is'), dir(inspect))) count = len(filter(lambda x:x.startswith('is'), dir(inspect)))
# This test is here for remember you to update Doc/library/inspect.rst # 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 expected = 16
err_msg = "There are %d (not %d) is* functions" % (count, expected) err_msg = "There are %d (not %d) is* functions" % (count, expected)
self.assertEqual(count, expected, err_msg) self.assertEqual(count, expected, err_msg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment