| Index: tests/lib/convert/chunked_conversion_json_decode1_test.dart
|
| diff --git a/tests/lib/convert/chunked_conversion_json_decode1_test.dart b/tests/lib/convert/chunked_conversion_json_decode1_test.dart
|
| index 932eae492b3ca36f0d51103e7e478fea196be088..0ef8ff3a8350a2e47e9f9d1c3567622f9cce533d 100644
|
| --- a/tests/lib/convert/chunked_conversion_json_decode1_test.dart
|
| +++ b/tests/lib/convert/chunked_conversion_json_decode1_test.dart
|
| @@ -118,7 +118,7 @@ Object decode6(String str) {
|
| new ChunkedConversionSink.withCallback((x) => result = x.single);
|
| var stringConversionSink = decoder.startChunkedConversion(objectSink);
|
| ByteConversionSink inputByteSink = stringConversionSink.asUtf8Sink(false);
|
| - Object tmpBytes = UTF8.encode(str);
|
| + var tmpBytes = UTF8.encode(str);
|
| tmpBytes.forEach((b) => inputByteSink.addSlice([0, b, 1], 1, 2, false));
|
| inputByteSink.close();
|
| return result;
|
|
|