diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-08 11:11:13 -0700 |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-08 11:11:13 -0700 |
commit | e58571b7eaa3f282d7d29f3aead1cc8220bec473 (patch) | |
tree | e43f9fd886b42d92ec4d6c544fe83e91eb6f27e8 /Lib/test/test_httpservers.py | |
parent | ee178e6d6ebcf28da8696c853cc9de5e3c0f15b4 (diff) | |
download | cpython-git-e58571b7eaa3f282d7d29f3aead1cc8220bec473.tar.gz |
Fixes tests broken by issue #27781.
Diffstat (limited to 'Lib/test/test_httpservers.py')
-rw-r--r-- | Lib/test/test_httpservers.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index 75044cbafa..4e931446b9 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -370,6 +370,8 @@ class SimpleHTTPServerTestCase(BaseTestCase): return body @support.requires_mac_ver(10, 5) + @unittest.skipIf(sys.platform == 'win32', + 'undecodable name cannot be decoded on win32') @unittest.skipUnless(support.TESTFN_UNDECODABLE, 'need support.TESTFN_UNDECODABLE') def test_undecodable_filename(self): |