diff --git a/zerver/tests/test_signup.py b/zerver/tests/test_signup.py index 0abe83ef54..7fd0a66c03 100644 --- a/zerver/tests/test_signup.py +++ b/zerver/tests/test_signup.py @@ -92,7 +92,7 @@ class PublicURLTest(ZulipTestCase): # Add all files in 'templates/zerver/help' directory (except for 'main.html' and # 'index.md') to `get_urls['200']` list. for doc in os.listdir('./templates/zerver/help'): - if doc not in {'main.html', 'index.md'}: + if doc not in {'main.html', 'index.md', 'include'}: get_urls[200].append('/help/' + os.path.splitext(doc)[0]) # Strip the extension. post_urls = {200: ["/accounts/login/"],