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

Unified Diff: test/codegen/lib/convert/html_escape_test.dart

Issue 1978963002: Upgrade to the latest dart:convert. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 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 | « test/codegen/lib/convert/codec2_test.dart ('k') | tool/input_sdk/lib/convert/ascii.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/lib/convert/html_escape_test.dart
diff --git a/test/codegen/lib/convert/html_escape_test.dart b/test/codegen/lib/convert/html_escape_test.dart
index a9d0b6717311672522a67558c21e47bb9004a2d3..296af887257e2c21cd4bb9ca3bce629a0d018768 100644
--- a/test/codegen/lib/convert/html_escape_test.dart
+++ b/test/codegen/lib/convert/html_escape_test.dart
@@ -46,7 +46,7 @@ void _testConvert(HtmlEscape escape, String input, String expected) {
}
void _testTransform(HtmlEscape escape, String input, String expected) {
- var controller = new StreamController(sync: true);
+ var controller = new StreamController<String>(sync: true);
var stream = controller.stream.transform(escape);
« no previous file with comments | « test/codegen/lib/convert/codec2_test.dart ('k') | tool/input_sdk/lib/convert/ascii.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698