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

Unified Diff: tests/lib/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/convert/chunked_conversion2_test.dart
diff --git a/tests/lib/convert/chunked_conversion2_test.dart b/tests/lib/convert/chunked_conversion2_test.dart
index d1e57ab69838beaaae31cd5049d6d9e738a6c8e3..7737692e5d2375fe2ed0e1653c4a09dae015bde0 100644
--- a/tests/lib/convert/chunked_conversion2_test.dart
+++ b/tests/lib/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 {
add(List<int> bytes) {
accumulator.add(bytes);
}
+
close() {}
}

Powered by Google App Engine
This is Rietveld 408576698