From: Yury Selivanov Date: Wed, 1 Jul 2015 01:44:52 +0000 (-0400) Subject: Issue #24541: Update comment in test_inspect.test_eightteen X-Git-Tag: v3.5.0b3~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22f68d5dd68459ad2ad28e4b25b9e9267e0761b3;p=thirdparty%2FPython%2Fcpython.git Issue #24541: Update comment in test_inspect.test_eightteen --- diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 9307e21386f2..1bf45763c8d4 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -94,7 +94,7 @@ class TestPredicates(IsTestBase): def test_eightteen(self): 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 + # which claims there are 18 such functions expected = 18 err_msg = "There are %d (not %d) is* functions" % (count, expected) self.assertEqual(count, expected, err_msg)