diff options
author | Guido van Rossum <guido@python.org> | 2007-07-23 18:06:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-23 18:06:59 (GMT) |
commit | 005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84 (patch) | |
tree | 38f58257bbb75ad8659eda99f833fbc0c89b3250 /Lib/test/test_codecmaps_kr.py | |
parent | 4ca947183154a7cfc7a6ccbb2e5c856a16a5dce3 (diff) | |
download | cpython-005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84.zip cpython-005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84.tar.gz cpython-005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84.tar.bz2 |
Tweaks to make the codecmaps tests pass again.
(To run these, you need to pass -uurlfetch to regrtest.py or runtests.sh.)
Diffstat (limited to 'Lib/test/test_codecmaps_kr.py')
-rw-r--r-- | Lib/test/test_codecmaps_kr.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_codecmaps_kr.py b/Lib/test/test_codecmaps_kr.py index 3f06187..4a97611 100644 --- a/Lib/test/test_codecmaps_kr.py +++ b/Lib/test/test_codecmaps_kr.py @@ -30,8 +30,8 @@ class TestJOHABMap(test_multibytecodec_support.TestBase_Mapping, # but, in early 90s that is the only era used johab widely, # the most softwares implements it as REVERSE SOLIDUS. # So, we ignore the standard here. - pass_enctest = [('\\', '\u20a9')] - pass_dectest = [('\\', '\u20a9')] + pass_enctest = [(b'\\', '\u20a9')] + pass_dectest = [(b'\\', '\u20a9')] def test_main(): test_support.run_unittest(__name__) |