File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
pkg/_pub_shared/lib/validation/html Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ void main() {
137137 },
138138 );
139139
140- // TODO(https://github.com/dart-lang/pub-dev/issues/8385): reanble out commented tests.
140+ // TODO(https://github.com/dart-lang/pub-dev/issues/8385): enable out commented tests.
141141
142142 // testWithProfile(
143143 // 'package show page',
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ void parseAndValidateHtml(String html) {
1818 if (html.startsWith ('<html>' )) {
1919 html = '<!DOCTYPE html>\n $html ' ;
2020 }
21- validateHtml (parser.HtmlParser (html, strict: true ).parse ());
21+ // TODO(https://github.com/dart-lang/pub-dev/issues/8385): set `strict` to true
22+ validateHtml (parser.HtmlParser (html, strict: false ).parse ());
2223}
2324
2425/// Validates the parsed HTML content and throws AssertionError if any of the
You can’t perform that action at this time.
0 commit comments