Commit b795aa85 authored by Ned Deily's avatar Ned Deily

Issue #19275: Fix test_site failure on OS X due to typo.

parent 5ea7f93d
...@@ -450,7 +450,7 @@ class StartupImportTests(unittest.TestCase): ...@@ -450,7 +450,7 @@ class StartupImportTests(unittest.TestCase):
collection_mods = {'_collections', 'collections', 'functools', collection_mods = {'_collections', 'collections', 'functools',
'heapq', 'itertools', 'keyword', 'operator', 'heapq', 'itertools', 'keyword', 'operator',
'reprlib', 'types', 'weakref'} 'reprlib', 'types', 'weakref'}
self.assertFalse(modules.intersection(re_mods), stderr) self.assertFalse(modules.intersection(collection_mods), stderr)
if __name__ == "__main__": if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment