From: Zachary Ware Date: Mon, 30 Dec 2013 21:09:20 +0000 (-0600) Subject: Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) X-Git-Tag: v3.4.0b2~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bfd488c51f0297f2fde99d78c6ef43c56187c684;p=thirdparty%2FPython%2Fcpython.git Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) --- diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py index 49e267e20aa1..5a04e0ddd0fd 100644 --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -429,7 +429,7 @@ class SDistTestCase(PyPIRCCommandTestCase): self.assertEqual(sorted(filenames), ['fake-1.0', 'fake-1.0/PKG-INFO', 'fake-1.0/README.manual']) - @unittest.skipUnless(zlib, "requires zlib") + @unittest.skipUnless(ZLIB_SUPPORT, "requires zlib") @unittest.skipUnless(UID_GID_SUPPORT, "Requires grp and pwd support") @unittest.skipIf(find_executable('tar') is None, "The tar command is not found")