From c2c5843dcf2667d9e628c86574205e0d181e75ff Mon Sep 17 00:00:00 2001 From: tristanlatr Date: Thu, 21 Nov 2024 11:54:33 -0500 Subject: [PATCH] Fix test case --- pydoctor/test/test_commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydoctor/test/test_commandline.py b/pydoctor/test/test_commandline.py index 2d35ef083..63c39c90a 100644 --- a/pydoctor/test/test_commandline.py +++ b/pydoctor/test/test_commandline.py @@ -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 '

Search

' in help_page + assert '>Search' in help_page def test_htmlbaseurl_option_all_pages(tmp_path: Path) -> None: """