This commit is contained in:
Christian Heimes 2008-03-03 20:30:29 +00:00
parent 608c1d8e87
commit 728bee897f
1 changed files with 2 additions and 2 deletions

View File

@ -50,11 +50,11 @@ def generator_function_example(self):
yield i yield i
class TestPredicates(IsTestBase): class TestPredicates(IsTestBase):
def test_fifteen(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 15 such functions
expected = 15 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)