Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilipp committed Jun 28, 2021
1 parent bcc0030 commit ec1c0bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_autodocsumm.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def test_module_with_title(self, app):
assert (
'<span class="pre">\'Should</span> '
'<span class="pre">be</span> '
'<span class="pre">skipped\'</span>',
'<span class="pre">skipped\'</span>'
) not in html
else:
assert 'Should be skipped' not in html
Expand All @@ -173,13 +173,13 @@ def test_module_with_title(self, app):
'<span class="pre">\'Should</span> '
'<span class="pre">also</span> '
'<span class="pre">be</span> '
'<span class="pre">included\'</span>',
'<span class="pre">included\'</span>'
) in html
assert (
'<span class="pre">\'Should</span> '
'<span class="pre">also</span> '
'<span class="pre">be</span> '
'<span class="pre">skipped\'</span>',
'<span class="pre">skipped\'</span>'
) not in html
else:
assert 'Should also be skipped' not in html
Expand Down Expand Up @@ -237,7 +237,7 @@ def test_class(self, app):
assert (
'<span class="pre">\'Should</span> '
'<span class="pre">be</span> '
'<span class="pre">included\'</span>',
'<span class="pre">included\'</span>'
) in html

assert 'DummySection' in html
Expand Down

0 comments on commit ec1c0bd

Please sign in to comment.