diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-16 21:47:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 21:47:17 +0900 |
commit | 42140fae390a13f9c57aae6837d6d7e9d9c0fe97 (patch) | |
tree | 239ba4d0bba3e6bf925af917d7c6d219ae1a6f64 /tests/test_build_htmlhelp.py | |
parent | d160adb8118ebe19ee74b3fbd55478490c473ed8 (diff) | |
parent | c6bd84a61467a5a60adb11af7b5a7b99ac591fbf (diff) | |
download | sphinx-git-42140fae390a13f9c57aae6837d6d7e9d9c0fe97.tar.gz |
Merge pull request #5787 from tk0miya/refactor_uprefix
refactor: Remove u-prefix from strings
Diffstat (limited to 'tests/test_build_htmlhelp.py')
-rw-r--r-- | tests/test_build_htmlhelp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_build_htmlhelp.py b/tests/test_build_htmlhelp.py index 40d34681a..e7bd8a8f3 100644 --- a/tests/test_build_htmlhelp.py +++ b/tests/test_build_htmlhelp.py @@ -27,6 +27,6 @@ def test_htmlhelp_file_suffix(app, warning): def test_default_htmlhelp_basename(): - config = Config({'project': u'Sphinx Documentation'}) + config = Config({'project': 'Sphinx Documentation'}) config.init_values() assert default_htmlhelp_basename(config) == 'sphinxdoc' |