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

Unified Diff: pkg/polymer/test/build/import_inliner_test.dart

Issue 487793002: html escape log messages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
Index: pkg/polymer/test/build/import_inliner_test.dart
diff --git a/pkg/polymer/test/build/import_inliner_test.dart b/pkg/polymer/test/build/import_inliner_test.dart
index edbaa0ea6f3a50e2f6f5280a442b03eb1e2d25ab..431181b4e0050812301da31ff87dbcc72e1d83e7 100644
--- a/pkg/polymer/test/build/import_inliner_test.dart
+++ b/pkg/polymer/test/build/import_inliner_test.dart
@@ -682,8 +682,9 @@ void importTests() {
'a|web/test.html._buildLogs.1':
'[{'
'"level":"Error",'
- '"message":"Failed to inline html import: '
- 'Could not find asset a|web/foo.html.",'
+ '"message":"${new HtmlEscape().convert(
kevmoo 2014/08/19 20:53:02 use the const ctor for HtmlEscape so we're not con
jakemac 2014/08/20 14:48:18 Done.
+ 'Failed to inline html import: '
+ 'Could not find asset a|web/foo.html.')}",'
'"assetId":{"package":"a","path":"web/foo.html"},'
'"span":{'
'"location":"web/test.html:1:28",'
@@ -1103,4 +1104,4 @@ void entryPointTests() {
'<script rel="import" href="../../packages/b/bar/bar.js"></script>'
'</body></html>',
});
-}
+}

Powered by Google App Engine
This is Rietveld 408576698