summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 23:16:09 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 23:16:09 +0000
commit95ccac776d4446b9874367e27f276bdfb304f1bf (patch)
treec661c977f4c7997bc8b7f080b1f6b955b8a4ec42
parentc60ea329a4f40791139c24fbb25c8514cc40eeb2 (diff)
downloadcpython-git-95ccac776d4446b9874367e27f276bdfb304f1bf.tar.gz
forgot to add the win32 test in the unittest skip call
-rw-r--r--Lib/distutils/tests/test_msvc9compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py
index e1f08d8ad8..8a908d9954 100644
--- a/Lib/distutils/tests/test_msvc9compiler.py
+++ b/Lib/distutils/tests/test_msvc9compiler.py
@@ -60,7 +60,7 @@ _CLEANED_MANIFEST = """\
</dependency>
</assembly>"""
-@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):