From aaa2f1dea706daf2a5f431d97a3e3120dba652d2 Mon Sep 17 00:00:00 2001 From: Hye-Shik Chang Date: Sat, 10 Dec 2005 17:44:27 +0000 Subject: Patch #1276356: Implement new resource "urlfetch" for regrtest. This enables even impatient people to run tests that require remote files such as test_normalization and test_codecmaps_*. --- Lib/test/test_codecmaps_cn.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'Lib/test/test_codecmaps_cn.py') diff --git a/Lib/test/test_codecmaps_cn.py b/Lib/test/test_codecmaps_cn.py index 31871e2a2e..25ecc0292e 100644 --- a/Lib/test/test_codecmaps_cn.py +++ b/Lib/test/test_codecmaps_cn.py @@ -12,13 +12,11 @@ import unittest class TestGB2312Map(test_multibytecodec_support.TestBase_Mapping, unittest.TestCase): encoding = 'gb2312' - mapfilename = 'EUC-CN.TXT' mapfileurl = 'http://people.freebsd.org/~perky/i18n/EUC-CN.TXT' class TestGBKMap(test_multibytecodec_support.TestBase_Mapping, unittest.TestCase): encoding = 'gbk' - mapfilename = 'CP936.TXT' mapfileurl = 'http://www.unicode.org/Public/MAPPINGS/VENDORS/' \ 'MICSFT/WINDOWS/CP936.TXT' @@ -28,6 +26,5 @@ def test_main(): suite.addTest(unittest.makeSuite(TestGBKMap)) test_support.run_suite(suite) -test_multibytecodec_support.register_skip_expected(TestGB2312Map, TestGBKMap) if __name__ == "__main__": test_main() -- cgit v1.2.1