diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2005-12-10 17:44:27 +0000 |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2005-12-10 17:44:27 +0000 |
commit | aaa2f1dea706daf2a5f431d97a3e3120dba652d2 (patch) | |
tree | c602cfc7ed52919ab7cffa175abfe4a6880869ac /Lib/test/test_codecmaps_hk.py | |
parent | 432be36056ca12f5265616f07d2f369d5878982d (diff) | |
download | cpython-aaa2f1dea706daf2a5f431d97a3e3120dba652d2.tar.gz cpython-aaa2f1dea706daf2a5f431d97a3e3120dba652d2.zip |
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_*.
Diffstat (limited to 'Lib/test/test_codecmaps_hk.py')
-rw-r--r-- | Lib/test/test_codecmaps_hk.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_codecmaps_hk.py b/Lib/test/test_codecmaps_hk.py index 43137b643ab..2335c51d457 100644 --- a/Lib/test/test_codecmaps_hk.py +++ b/Lib/test/test_codecmaps_hk.py @@ -12,7 +12,6 @@ import unittest class TestBig5HKSCSMap(test_multibytecodec_support.TestBase_Mapping, unittest.TestCase): encoding = 'big5hkscs' - mapfilename = 'BIG5HKSCS.TXT' mapfileurl = 'http://people.freebsd.org/~perky/i18n/BIG5HKSCS.TXT' def test_main(): @@ -20,6 +19,5 @@ def test_main(): suite.addTest(unittest.makeSuite(TestBig5HKSCSMap)) test_support.run_suite(suite) -test_multibytecodec_support.register_skip_expected(TestBig5HKSCSMap) if __name__ == "__main__": test_main() |