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

This commit is contained in:
Ned Deily 2013-10-17 15:21:40 -07:00
parent 5ea7f93dcd
commit b795aa8547

View file

@ -450,7 +450,7 @@ class StartupImportTests(unittest.TestCase):
collection_mods = {'_collections', 'collections', 'functools',
'heapq', 'itertools', 'keyword', 'operator',
'reprlib', 'types', 'weakref'}
self.assertFalse(modules.intersection(re_mods), stderr)
self.assertFalse(modules.intersection(collection_mods), stderr)
if __name__ == "__main__":