From 22f68d5dd68459ad2ad28e4b25b9e9267e0761b3 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 30 Jun 2015 21:44:52 -0400 Subject: [PATCH] Issue #24541: Update comment in test_inspect.test_eightteen --- Lib/test/test_inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 9307e21386f..1bf45763c8d 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)