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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/chunked_conversion2_test.dart
diff --git a/tests/lib_strong/convert/chunked_conversion2_test.dart b/tests/lib_strong/convert/chunked_conversion2_test.dart
index 751b447e57d761f2043e7fff48d9c47b9c9909b2..ca37d101c649edc2c808ab4e0d1211371ee5c6cd 100644
--- a/tests/lib_strong/convert/chunked_conversion2_test.dart
+++ b/tests/lib_strong/convert/chunked_conversion2_test.dart
@@ -14,6 +14,7 @@ class MyByteSink extends ByteConversionSinkBase {
add(List<int> bytes) {
accumulator.add(bytes);
}
+
close() {}
}
@@ -32,6 +33,7 @@ class MyChunkedSink extends ChunkedConversionSink<List<int>> {
add(List<int> bytes) {
accumulator.add(bytes);
}
+
close() {}
}

Powered by Google App Engine
This is Rietveld 408576698