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

Unified Diff: tests/standalone/io/bytes_builder_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/standalone/io/bytes_builder_test.dart
diff --git a/tests/standalone/io/bytes_builder_test.dart b/tests/standalone/io/bytes_builder_test.dart
index 7dd49094d9676fe6fc446b56152ac9796eb82eaa..5b6a6b9158ed3b63dfb918e53d78baeb4f66bb75 100644
--- a/tests/standalone/io/bytes_builder_test.dart
+++ b/tests/standalone/io/bytes_builder_test.dart
@@ -49,8 +49,8 @@ main() {
bytes = b.takeBytes();
testLength(0);
Expect.isTrue(bytes is Uint8List);
- Expect.listEquals([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
- bytes);
+ Expect.listEquals(
+ [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], bytes);
b.addByte(0);
testLength(1);

Powered by Google App Engine
This is Rietveld 408576698