diff options
| author | shimizukawa <shimizukawa@gmail.com> | 2013-10-03 06:43:22 +0000 |
|---|---|---|
| committer | shimizukawa <shimizukawa@gmail.com> | 2013-10-03 06:43:22 +0000 |
| commit | 33ceef4989db97e4b75e0d0c20eff32703f5d109 (patch) | |
| tree | 422acd651640eb2d274426c3997aa8f6b64137bb /tests/test_quickstart.py | |
| parent | d101c636785bb467eb12b727afa19274075423db (diff) | |
| download | sphinx-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.py | 4 |
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' |
