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

Unified Diff: tests/standalone/io/regress_10026_test.dart

Issue 22867033: Update ZLib/GZip in dart:io to be a Codec/Converter from dart:convert. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add documentation and convert impl. Created 7 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: tests/standalone/io/regress_10026_test.dart
diff --git a/tests/standalone/io/regress_10026_test.dart b/tests/standalone/io/regress_10026_test.dart
index 444c145ebf39d3934e21ffdc7ca631ca523b8c97..6c386c7cad8823da8e43850254a2a8c37e62656d 100644
--- a/tests/standalone/io/regress_10026_test.dart
+++ b/tests/standalone/io/regress_10026_test.dart
@@ -12,7 +12,7 @@ void testZLibInflate_regress10026() {
var port = new ReceivePort();
var controller = new StreamController(sync: true);
controller.stream
- .transform(new ZLibInflater())
+ .transform(ZLIB.decoder)
.transform(new StringDecoder())
.fold(new StringBuffer(), (buffer, s) {
buffer.write(s);

Powered by Google App Engine
This is Rietveld 408576698