Update the ignore-list for assert_no_404_errors()

This commit is contained in:
Michael Mintz 2022-02-11 15:45:06 -05:00
parent 7ddd7a3439
commit 3f2150848a
1 changed files with 4 additions and 2 deletions

View File

@ -4614,10 +4614,12 @@ class BaseCase(unittest.TestCase):
links = []
for link in all_links:
if (
"javascript:" not in link
"data:" not in link
and "mailto:" not in link
and "data:" not in link
and "javascript:" not in link
and "://fonts.gstatic.com" not in link
and "://fonts.googleapis.com" not in link
and "://googleads.g.doubleclick.net" not in link
):
links.append(link)
if timeout: