diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-25 01:11:52 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-02 12:59:51 +0900 |
commit | 6bf201533a372fee2503ea4b79858752ce41b612 (patch) | |
tree | eb3c55798da77b47302353e37059bc32a2b69f39 | |
parent | 4ea25a4df36eaaf7f6084bc9138877d4d90e6cb6 (diff) | |
download | sphinx-git-6bf201533a372fee2503ea4b79858752ce41b612.tar.gz |
Fix style-check violation
-rw-r--r-- | tests/test_highlighting.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_highlighting.py b/tests/test_highlighting.py index 46cf95d1a..5a6b749d0 100644 --- a/tests/test_highlighting.py +++ b/tests/test_highlighting.py @@ -111,4 +111,5 @@ def test_default_highlight(logger): ret = bridge.highlight_block('reST ``like`` text', 'python3') logger.warning.assert_called_with('Could not lex literal_block as "%s". ' 'Highlighting skipped.', 'python3', - type='misc', subtype='highlighting_failure', location=None) + type='misc', subtype='highlighting_failure', + location=None) |