Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: pkg/third_party/html5lib/test/parser_feature_test.dart

Issue 297203009: Fix a couple more tests that were relying on sourcemap message format. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: changelog Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/third_party/html5lib/pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.');
});
« no previous file with comments | « pkg/third_party/html5lib/pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698