diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-15 23:02:28 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-16 21:28:51 +0900 |
commit | c6bd84a61467a5a60adb11af7b5a7b99ac591fbf (patch) | |
tree | 239ba4d0bba3e6bf925af917d7c6d219ae1a6f64 /tests/test_build_manpage.py | |
parent | d160adb8118ebe19ee74b3fbd55478490c473ed8 (diff) | |
download | sphinx-git-c6bd84a61467a5a60adb11af7b5a7b99ac591fbf.tar.gz |
refactor: Remove u-prefix from strings
Diffstat (limited to 'tests/test_build_manpage.py')
-rw-r--r-- | tests/test_build_manpage.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_build_manpage.py b/tests/test_build_manpage.py index 1c8ebec70..ddaba5f91 100644 --- a/tests/test_build_manpage.py +++ b/tests/test_build_manpage.py @@ -33,10 +33,10 @@ def test_all(app, status, warning): def test_default_man_pages(): config = Config({'master_doc': 'index', - 'project': u'STASI™ Documentation', - 'author': u"Wolfgang Schäuble & G'Beckstein", + 'project': 'STASI™ Documentation', + 'author': "Wolfgang Schäuble & G'Beckstein", 'release': '1.0'}) config.init_values() - expected = [('index', 'stasi', u'STASI™ Documentation 1.0', - [u"Wolfgang Schäuble & G'Beckstein"], 1)] + expected = [('index', 'stasi', 'STASI™ Documentation 1.0', + ["Wolfgang Schäuble & G'Beckstein"], 1)] assert default_man_pages(config) == expected |