From: Tarek Ziadé Date: Mon, 21 Dec 2009 23:16:09 +0000 (+0000) Subject: forgot to add the win32 test in the unittest skip call X-Git-Tag: v3.2a1~1983 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95ccac776d4446b9874367e27f276bdfb304f1bf;p=thirdparty%2FPython%2Fcpython.git forgot to add the win32 test in the unittest skip call --- diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py index e1f08d8ad87f..8a908d99548b 100644 --- a/Lib/distutils/tests/test_msvc9compiler.py +++ b/Lib/distutils/tests/test_msvc9compiler.py @@ -60,7 +60,7 @@ _CLEANED_MANIFEST = """\ """ -@unittest.skip("These tests are only for win32") +@unittest.skipUnless(sys.platform=="win32", "These tests are only for win32") class msvc9compilerTestCase(support.TempdirManager, unittest.TestCase):