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

Unified Diff: tests/lib_strong/convert/streamed_conversion_json_utf8_decode_test.dart

Issue 2779843004: Fix top-level inference errors for most of the newly failing tests. (Closed)
Patch Set: Created 3 years, 9 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: tests/lib_strong/convert/streamed_conversion_json_utf8_decode_test.dart
diff --git a/tests/lib_strong/convert/streamed_conversion_json_utf8_decode_test.dart b/tests/lib_strong/convert/streamed_conversion_json_utf8_decode_test.dart
index ab014ee598c45252ca8cf08dfdd5cff1bc8fe0e3..e35a1a144f644ba1e399044a96569e43a034a4ad 100644
--- a/tests/lib_strong/convert/streamed_conversion_json_utf8_decode_test.dart
+++ b/tests/lib_strong/convert/streamed_conversion_json_utf8_decode_test.dart
@@ -11,7 +11,7 @@ import 'dart:convert';
import 'json_unicode_tests.dart';
import "package:async_helper/async_helper.dart";
-final JSON_UTF8 = JSON.fuse(UTF8);
+final JSON_UTF8 = JSON.fuse<List<int>>(UTF8);
void expectJsonEquals(o1, o2, [path = "result"]) {
if (o1 == o2) return;

Powered by Google App Engine
This is Rietveld 408576698