Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-12-15 17:02:28 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-12-16 15:28:51 +0300
commitc6bd84a61467a5a60adb11af7b5a7b99ac591fbf (patch)
tree239ba4d0bba3e6bf925af917d7c6d219ae1a6f64 /tests/test_build_text.py
parentd160adb8118ebe19ee74b3fbd55478490c473ed8 (diff)
refactor: Remove u-prefix from strings
Diffstat (limited to 'tests/test_build_text.py')
-rw-r--r--tests/test_build_text.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_build_text.py b/tests/test_build_text.py
index dd11427ce..f7a4035ab 100644
--- a/tests/test_build_text.py
+++ b/tests/test_build_text.py
@@ -50,12 +50,12 @@ def test_lineblock(app, status, warning):
app.builder.build_update()
result = (app.outdir / 'lineblock.txt').text(encoding='utf-8')
expect = (
- u"* one\n"
- u"\n"
- u" line-block 1\n"
- u" line-block 2\n"
- u"\n"
- u"followed paragraph.\n"
+ "* one\n"
+ "\n"
+ " line-block 1\n"
+ " line-block 2\n"
+ "\n"
+ "followed paragraph.\n"
)
assert result == expect