Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8a8f453

Browse files
committed
Issue #24400: Fix failing unittest
1 parent 88632d7 commit 8a8f453

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def test_eightteen(self):
9595
count = len([x for x in dir(inspect) if x.startswith('is')])
9696
# This test is here for remember you to update Doc/library/inspect.rst
9797
# which claims there are 16 such functions
98-
expected = 19
98+
expected = 18
9999
err_msg = "There are %d (not %d) is* functions" % (count, expected)
100100
self.assertEqual(count, expected, err_msg)
101101

0 commit comments

Comments
 (0)