diff options
author | Windson yang <wiwindson@outlook.com> | 2019-04-22 18:46:27 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-04-22 18:46:27 (GMT) |
commit | f51dd4feb0794b7659f281173da9d8a04317d134 (patch) | |
tree | c17b3e7e01e67b7d720a1e6868ba64d9205217b4 /Lib/test | |
parent | be372d73b4c59026134a7e722ece34367c3bd3b6 (diff) | |
download | cpython-f51dd4feb0794b7659f281173da9d8a04317d134.zip cpython-f51dd4feb0794b7659f281173da9d8a04317d134.tar.gz cpython-f51dd4feb0794b7659f281173da9d8a04317d134.tar.bz2 |
bpo-36683: Rename duplicate test_io_encoding to test_pyio_encoding (GH-12896)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_utf8_mode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_utf8_mode.py b/Lib/test/test_utf8_mode.py index 2429b00..bdb9345 100644 --- a/Lib/test/test_utf8_mode.py +++ b/Lib/test/test_utf8_mode.py @@ -195,7 +195,7 @@ class UTF8ModeTests(unittest.TestCase): def test_io_encoding(self): self.check_io_encoding('io') - def test_io_encoding(self): + def test_pyio_encoding(self): self.check_io_encoding('_pyio') def test_locale_getpreferredencoding(self): |