From b795aa8547b5a615d715fedc6a6267b7e8811d94 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Thu, 17 Oct 2013 15:21:40 -0700 Subject: Issue #19275: Fix test_site failure on OS X due to typo. --- Lib/test/test_site.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 5b3d961..40db067 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -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__": -- cgit v0.12