| Index: dart/tests/standalone/io/regress_21160_test.dart
|
| diff --git a/dart/tests/standalone/io/regress_21160_test.dart b/dart/tests/standalone/io/regress_21160_test.dart
|
| index 98c9b68f9169996b40190b9741c5b29202859001..69cbcf19df9853af9186cdbd9343f51d42274ffc 100644
|
| --- a/dart/tests/standalone/io/regress_21160_test.dart
|
| +++ b/dart/tests/standalone/io/regress_21160_test.dart
|
| @@ -10,9 +10,9 @@ import "dart:async";
|
| import "dart:io";
|
| import "dart:typed_data";
|
|
|
| -// 1 MB of i%256 data.
|
| +// 10 KiB of i%256 data.
|
| Uint8List DATA = new Uint8List.fromList(
|
| - new List.generate(1024 * 1024, (i) => i % 256));
|
| + new List.generate(10 * 1024, (i) => i % 256));
|
|
|
| Future<SecureServerSocket> startServer() {
|
| return SecureServerSocket.bind("localhost",
|
|
|