| Index: pkg/third_party/html5lib/test/parser_feature_test.dart
|
| diff --git a/pkg/third_party/html5lib/test/parser_feature_test.dart b/pkg/third_party/html5lib/test/parser_feature_test.dart
|
| index b21480d19923cccd77c3cb02319cd378f959a3ea..e5b036f0019a199515f93640bf6004ec91c6d226 100644
|
| --- a/pkg/third_party/html5lib/test/parser_feature_test.dart
|
| +++ b/pkg/third_party/html5lib/test/parser_feature_test.dart
|
| @@ -53,7 +53,7 @@ main() {
|
| expect(error.span.text, '<!DOCTYPE html>');
|
|
|
| expect(error.toString(), '''
|
| -ParseError:4:3: Unexpected DOCTYPE. Ignored.
|
| +On line 4, column 3 of ParseError: Unexpected DOCTYPE. Ignored.
|
| <!DOCTYPE html>
|
| ^^^^^^^^^^^^^^^''');
|
| });
|
| @@ -245,7 +245,7 @@ ParseError:4:3: Unexpected DOCTYPE. Ignored.
|
| expect(parser.errors[0].message,
|
| 'Unexpected non-space characters. Expected DOCTYPE.');
|
| expect(parser.errors[0].toString(),
|
| - 'ParserError:1:4: Unexpected non-space characters. '
|
| + 'ParserError on line 1, column 4: Unexpected non-space characters. '
|
| 'Expected DOCTYPE.');
|
| });
|
|
|
|
|