From: Victor Stinner Date: Tue, 18 Mar 2014 00:40:22 +0000 (+0100) Subject: Issue #20574: Remove duplicated test failing on Windows XP X-Git-Tag: v3.5.0a1~2091 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07beb375b7bdaef0d6b99a0bd891e9276ea6515b;p=python Issue #20574: Remove duplicated test failing on Windows XP --- diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 34a064c725..6945a99576 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -2879,11 +2879,5 @@ class CodePageTest(unittest.TestCase): self.assertEqual(decoded, ('abc', 3)) -@unittest.skipUnless(sys.platform == 'win32', - 'cp65001 is specific to Windows') -class CP65001Test(UTF8Test, unittest.TestCase): - encoding = "cp65001" - - if __name__ == "__main__": unittest.main()