aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-04-05 11:07:02 -0400
committerJason R. Coombs <jaraco@jaraco.com>2019-04-05 11:07:02 -0400
commit7ed188bcaf38a25fb63fbb1ed3b070428ff95759 (patch)
treec73b2e0239b9f7a71fe1ea5f941a1d6b9d44f35e
parentb336e83a63722b3a3e4d3f1779686149d5cef8d1 (diff)
downloadexternal_python_setuptools-7ed188bcaf38a25fb63fbb1ed3b070428ff95759.tar.gz
external_python_setuptools-7ed188bcaf38a25fb63fbb1ed3b070428ff95759.tar.bz2
external_python_setuptools-7ed188bcaf38a25fb63fbb1ed3b070428ff95759.zip
Correct cyrillic to match preferred pronunciation.
-rw-r--r--setuptools/tests/test_setopt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_setopt.py b/setuptools/tests/test_setopt.py
index 7c803500..3fb04fb4 100644
--- a/setuptools/tests/test_setopt.py
+++ b/setuptools/tests/test_setopt.py
@@ -29,8 +29,8 @@ class TestEdit:
UTF-8 should be retained.
"""
config = tmpdir.join('setup.cfg')
- self.write_text(str(config), '[names]\njaraco=йарацо')
+ self.write_text(str(config), '[names]\njaraco=джарако')
setopt.edit_config(str(config), dict(names=dict(other='yes')))
parser = self.parse_config(str(config))
- assert parser.get('names', 'jaraco') == 'йарацо'
+ assert parser.get('names', 'jaraco') == 'джарако'
assert parser.get('names', 'other') == 'yes'