diff options
author | Thomas Robitaille <thomas.robitaille@gmail.com> | 2019-11-12 14:29:20 +0000 |
---|---|---|
committer | Thomas Robitaille <thomas.robitaille@gmail.com> | 2019-11-12 14:29:20 +0000 |
commit | fa1cca1feea915bc05443ff16e6cad9b58260907 (patch) | |
tree | b383c4a5726ec132206f9d813f282865f3a5ca73 /tests/test_application.py | |
parent | 0a437bc9d65edf842949b6f5971b326a2784144d (diff) | |
download | sphinx-git-fa1cca1feea915bc05443ff16e6cad9b58260907.tar.gz |
Improve variable names and code style
Diffstat (limited to 'tests/test_application.py')
-rw-r--r-- | tests/test_application.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_application.py b/tests/test_application.py index ffe30a91b..a268f492f 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -105,7 +105,7 @@ def test_add_is_parallel_allowed(app, status, warning): app.setup_extension('read_serial') assert app.is_parallel_allowed('read') is False - assert ("the read_serial extension is not safe for parallel reading") in warning.getvalue() + assert "the read_serial extension is not safe for parallel reading" in warning.getvalue() warning.truncate(0) # reset warnings assert app.is_parallel_allowed('write') is True assert warning.getvalue() == '' |