diff options
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 |