Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr committed Nov 21, 2024
1 parent be8ae04 commit c2c5843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydoctor/test/test_commandline.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def test_apidocs_help(tmp_path: Path) -> None:
exit_code = driver.main(args=['--html-output', str(tmp_path), 'pydoctor/test/testpackages/basic/'])
assert exit_code == 0
help_page = (tmp_path / 'apidocs-help.html').read_text()
assert '<h2>Search</h2>' in help_page
assert '>Search</h2>' in help_page

def test_htmlbaseurl_option_all_pages(tmp_path: Path) -> None:
"""
Expand Down

0 comments on commit c2c5843

Please sign in to comment.