From: Ned Deily Date: Thu, 17 Oct 2013 22:21:40 +0000 (-0700) Subject: Issue #19275: Fix test_site failure on OS X due to typo. X-Git-Tag: v3.4.0a4~74 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b795aa8547b5a615d715fedc6a6267b7e8811d94;p=thirdparty%2FPython%2Fcpython.git Issue #19275: Fix test_site failure on OS X due to typo. --- diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 5b3d96132978..40db06711152 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__":