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); |