diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-07-01 19:55:04 -0500 |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-07-01 19:55:04 -0500 |
commit | d9de794c232078c1c024aa117e16e7367dafce13 (patch) | |
tree | 81306a6145cea48c3d345b03967c070194e4a361 /Lib/test/test_codecmaps_kr.py | |
parent | 44f09ebd0f9914db8ad20d54a1d1f07164b95a1f (diff) | |
download | cpython-git-d9de794c232078c1c024aa117e16e7367dafce13.tar.gz |
Issue #18258: Fix test discovery for test_codecmaps_*.
Diffstat (limited to 'Lib/test/test_codecmaps_kr.py')
-rw-r--r-- | Lib/test/test_codecmaps_kr.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_codecmaps_kr.py b/Lib/test/test_codecmaps_kr.py index e0bf716994..404d74edf3 100644 --- a/Lib/test/test_codecmaps_kr.py +++ b/Lib/test/test_codecmaps_kr.py @@ -36,8 +36,5 @@ class TestJOHABMap(multibytecodec_support.TestBase_Mapping, pass_enctest = [(b'\\', '\u20a9')] pass_dectest = [(b'\\', '\u20a9')] -def test_main(): - support.run_unittest(__name__) - if __name__ == "__main__": - test_main() + unittest.main() |