Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Lib/test/test_traceback.py
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
  • Loading branch information
pablogsal and JelleZijlstra authored Oct 20, 2022
commit de553f63340230efdd2e2c05a60b8abca7b8992c
2 changes: 1 addition & 1 deletion Lib/test/test_traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -3091,7 +3091,7 @@ def test_import_from_error_bad_suggestions_do_not_trigger_for_small_names(self):
self.assertNotIn("'pytho'", actual)

def test_import_from_suggestions_do_not_trigger_for_big_namespaces(self):
# A module with lots of names will not be consider for suggestions.
# A module with lots of names will not be considered for suggestions.
chunks = [f"index_{index} = " for index in range(200)]
chunks.append(" None")
code = " ".join(chunks)
Expand Down