diff options
author | Georg Brandl <georg@python.org> | 2013-03-31 15:44:04 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-03-31 15:44:04 +0200 |
commit | 9abf39f912ebdf947089c07d2bace20974a3755c (patch) | |
tree | 99b923f3a7abc43d65e1990c6c160ab0c4872770 /tests/test_autodoc.py | |
parent | 6a422c5c77a8752210ddddd4141cabfd783a7a81 (diff) | |
download | sphinx-git-9abf39f912ebdf947089c07d2bace20974a3755c.tar.gz |
Fix overlong lines.
Diffstat (limited to 'tests/test_autodoc.py')
-rw-r--r-- | tests/test_autodoc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index fcd064929..fdc8d5f7f 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -191,7 +191,8 @@ def test_format_signature(): class G2(F2, object): pass for C in (F2, G2): - assert formatsig('class', 'C', C, None, None) == '(a1, a2, kw1=True, kw2=False)' + assert formatsig('class', 'C', C, None, None) == \ + '(a1, a2, kw1=True, kw2=False)' # test for methods class H: |