From 5907ba0ffc02e29b2b7e18cce63df5f8408777c5 Mon Sep 17 00:00:00 2001 From: Guillaume Rousse <guillaume.rousse@renater.fr> Date: Tue, 1 Feb 2022 16:59:49 +0100 Subject: [PATCH] no need for so much exceptions --- t/cgi.t | 5 ----- 1 file changed, 5 deletions(-) diff --git a/t/cgi.t b/t/cgi.t index cae99af..1e42f97 100755 --- a/t/cgi.t +++ b/t/cgi.t @@ -116,11 +116,6 @@ sub html_ok { }); $tidy->ignore(type => TIDY_INFO); $tidy->ignore(text => qr/<img> lacks "alt" attribute/); - # https://github.com/htacg/tidy-html5/issues/611 - $tidy->ignore(text => qr/inserting implicit <table>/); - $tidy->ignore(text => qr/\S+ isn't allowed in <table> elements/); - $tidy->ignore(text => qr/missing \S+/); - $tidy->ignore(text => qr/discarding unexpected \S+/); local $ENV{LANG} = 'C'; Test::HTML::Tidy5::html_tidy_ok($tidy, $res->text(), "HTML content OK"); } -- GitLab