summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_locale.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2017-03-20 06:49:43 (GMT)
committerGitHub <noreply@github.com>2017-03-20 06:49:43 (GMT)
commitdf8280838f52d6ec45ba03ef734b0dec8a9c43fb (patch)
treede6f73d23e5ef14e39efc77768cfe19e03c60a74 /Lib/test/test_locale.py
parente46fb8611867fa3b407a813f53137929b7cb4a10 (diff)
downloadcpython-df8280838f52d6ec45ba03ef734b0dec8a9c43fb.zip
cpython-df8280838f52d6ec45ba03ef734b0dec8a9c43fb.tar.gz
cpython-df8280838f52d6ec45ba03ef734b0dec8a9c43fb.tar.bz2
bpo-20087: Revert "make the glibc alias table take precedence over the X11 one (#422)" (#713)
This reverts commit 02371e0ed1ee82ec73e7d363bcf2ed40cde1397a.
Diffstat (limited to 'Lib/test/test_locale.py')
-rw-r--r--Lib/test/test_locale.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py
index 2144819..99fab58 100644
--- a/Lib/test/test_locale.py
+++ b/Lib/test/test_locale.py
@@ -449,7 +449,7 @@ class NormalizeTest(unittest.TestCase):
self.check('ko_kr.euckr', 'ko_KR.eucKR')
self.check('zh_cn.euc', 'zh_CN.eucCN')
self.check('zh_tw.euc', 'zh_TW.eucTW')
- self.check('zh_tw.euctw', 'zh_TW.EUC_TW')
+ self.check('zh_tw.euctw', 'zh_TW.eucTW')
def test_japanese(self):
self.check('ja', 'ja_JP.eucJP')
@@ -475,9 +475,6 @@ class NormalizeTest(unittest.TestCase):
self.check('japanese.sjis', 'ja_JP.SJIS')
self.check('jp_jp', 'ja_JP.eucJP')
- def test_en_IN(self):
- self.check('en_IN', 'en_IN.UTF-8')
-
class TestMiscellaneous(unittest.TestCase):
def test_getpreferredencoding(self):