diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-04-05 11:07:02 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-04-05 11:07:02 -0400 |
commit | 7ed188bcaf38a25fb63fbb1ed3b070428ff95759 (patch) | |
tree | c73b2e0239b9f7a71fe1ea5f941a1d6b9d44f35e | |
parent | b336e83a63722b3a3e4d3f1779686149d5cef8d1 (diff) | |
download | external_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.py | 4 |
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' |