]> granicus.if.org Git - python/commitdiff
Issue #24541: Update comment in test_inspect.test_eightteen
authorYury Selivanov <yselivanov@sprymix.com>
Wed, 1 Jul 2015 01:44:52 +0000 (21:44 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Wed, 1 Jul 2015 01:44:52 +0000 (21:44 -0400)
Lib/test/test_inspect.py

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