summaryrefslogtreecommitdiff
path: root/tests/test_quickstart.py
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2013-10-03 06:43:22 +0000
committershimizukawa <shimizukawa@gmail.com>2013-10-03 06:43:22 +0000
commit33ceef4989db97e4b75e0d0c20eff32703f5d109 (patch)
tree422acd651640eb2d274426c3997aa8f6b64137bb /tests/test_quickstart.py
parentd101c636785bb467eb12b727afa19274075423db (diff)
downloadsphinx-33ceef4989db97e4b75e0d0c20eff32703f5d109.tar.gz
grammar fix: 'multibyte filename' is ambiguous. They are replaced with 'non-ASCII filename'. refs #703
Diffstat (limited to 'tests/test_quickstart.py')
-rw-r--r--tests/test_quickstart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py
index d14af696..9daa7401 100644
--- a/tests/test_quickstart.py
+++ b/tests/test_quickstart.py
@@ -108,7 +108,7 @@ def test_do_prompt():
raises(AssertionError, qs.do_prompt, d, 'k6', 'Q6', validator=qs.boolean)
-def test_do_prompt_with_multibyte():
+def test_do_prompt_with_nonascii():
d = {}
answers = {
'Q1': u'\u30c9\u30a4\u30c4',
@@ -118,7 +118,7 @@ def test_do_prompt_with_multibyte():
qs.do_prompt(d, 'k1', 'Q1', default=u'\u65e5\u672c')
except UnicodeEncodeError:
raise SkipTest(
- 'multibyte console input not supported on this encoding: %s',
+ 'non-ASCII console input not supported on this encoding: %s',
qs.TERM_ENCODING)
assert d['k1'] == u'\u30c9\u30a4\u30c4'