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

Skip to content

Commit b795aa8

Browse files
committed
Issue #19275: Fix test_site failure on OS X due to typo.
1 parent 5ea7f93 commit b795aa8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_site.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ def test_startup_imports(self):
450450
collection_mods = {'_collections', 'collections', 'functools',
451451
'heapq', 'itertools', 'keyword', 'operator',
452452
'reprlib', 'types', 'weakref'}
453-
self.assertFalse(modules.intersection(re_mods), stderr)
453+
self.assertFalse(modules.intersection(collection_mods), stderr)
454454

455455

456456
if __name__ == "__main__":

0 commit comments

Comments
 (0)