summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-06-04 17:48:06 -0700
committerAnthony Sottile <asottile@umich.edu>2019-06-04 17:50:34 -0700
commitbe2be040f95f7f47ea3fbb74ce12f5af4d483b97 (patch)
tree7af9393d46117cff81e48bb857ce25c50316d2fa /doc
parent0f4992c223bbf4757e83c20818538eb755604734 (diff)
downloadpytest-be2be040f95f7f47ea3fbb74ce12f5af4d483b97.tar.gz
Clean up u' prefixes and py2 bytes conversions
Diffstat (limited to 'doc')
-rw-r--r--doc/en/tmpdir.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/tmpdir.rst b/doc/en/tmpdir.rst
index 330011bb3..01397a5ba 100644
--- a/doc/en/tmpdir.rst
+++ b/doc/en/tmpdir.rst
@@ -22,7 +22,7 @@ created in the `base temporary directory`_.
# content of test_tmp_path.py
import os
- CONTENT = u"content"
+ CONTENT = "content"
def test_create_file(tmp_path):