diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-15 15:43:44 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-15 17:19:56 -0800 |
commit | 5bf25eb44529cb0546b9b690a142ca7529a062f0 (patch) | |
tree | 13ae675ba4ec81e0eb0b39c71c114124affbfadc /tests/test_build_html5.py | |
parent | 6113261948523ef6cad74621dec10e0cbf0189c7 (diff) | |
download | sphinx-git-5bf25eb44529cb0546b9b690a142ca7529a062f0.tar.gz |
Avoid respecifying default encoding for .encode()/.decode() calls
In Python 3, both .encode() and .decode() default the encoding to
'utf-8'. See the docs:
https://docs.python.org/3/library/stdtypes.html#str.encode
https://docs.python.org/3/library/stdtypes.html#bytes.decode
Simplify and shorten the code by using the default instead of
respecifying it.
Diffstat (limited to 'tests/test_build_html5.py')
-rw-r--r-- | tests/test_build_html5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_build_html5.py b/tests/test_build_html5.py index fc2c7e8eb..cb4290b9c 100644 --- a/tests/test_build_html5.py +++ b/tests/test_build_html5.py @@ -354,7 +354,7 @@ def test_html_download(app): confoverrides={'html_experimental_html5_writer': True}) def test_html_download_role(app, status, warning): app.build() - digest = md5((app.srcdir / 'dummy.dat').encode('utf-8')).hexdigest() + digest = md5((app.srcdir / 'dummy.dat').encode()).hexdigest() assert (app.outdir / '_downloads' / digest / 'dummy.dat').exists() content = (app.outdir / 'index.html').text() |