Skip to content

Commit 088f4dd

Browse files
committed
Fix tests
1 parent 1ab9c5a commit 088f4dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_pydoc/test_pydoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2172,7 +2172,7 @@ def mock_getline(prompt):
21722172

21732173
def test_keywords(self):
21742174
self.assertEqual(sorted(pydoc.Helper.keywords),
2175-
sorted(keyword.kwlist))
2175+
sorted(keyword.kwlist + ['lazy']))
21762176

21772177
def test_interact_empty_line_continues(self):
21782178
# gh-138568: test pressing Enter without input should continue in help session

0 commit comments

Comments
 (0)