diff options
author | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2013-10-03 06:43:22 +0000 |
---|---|---|
committer | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2013-10-03 06:43:22 +0000 |
commit | be65b9987933f6330e900d4020f00ec6280750db (patch) | |
tree | 422acd651640eb2d274426c3997aa8f6b64137bb /tests/test_build_text.py | |
parent | 1c02e0ee29f5c98d4b0c6fefed65dd141f7b84c2 (diff) | |
download | sphinx-git-be65b9987933f6330e900d4020f00ec6280750db.tar.gz |
grammar fix: 'multibyte filename' is ambiguous. They are replaced with 'non-ASCII filename'. refs #703
Diffstat (limited to 'tests/test_build_text.py')
-rw-r--r-- | tests/test_build_text.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_build_text.py b/tests/test_build_text.py index 445e39db6..1d5602967 100644 --- a/tests/test_build_text.py +++ b/tests/test_build_text.py @@ -86,7 +86,7 @@ def test_lineblock(app): @with_text_app() -def test_multibyte_title_line(app): +def test_nonascii_title_line(app): title = u'\u65e5\u672c\u8a9e' underline = u'=' * column_width(title) content = u'\n'.join((title, underline, u'')) @@ -101,7 +101,7 @@ def test_multibyte_title_line(app): @with_text_app() -def test_multibyte_table(app): +def test_nonascii_table(app): text = u'\u65e5\u672c\u8a9e' contents = (u"\n.. list-table::" "\n" @@ -122,7 +122,7 @@ def test_multibyte_table(app): @with_text_app() -def test_multibyte_maxwidth(app): +def test_nonascii_maxwidth(app): sb_text = u'abc' #length=3 mb_text = u'\u65e5\u672c\u8a9e' #length=3 |