| Index: tests/lib/async/slow_sink_test.dart
|
| diff --git a/tests/lib/async/slow_sink_test.dart b/tests/lib/async/slow_sink_test.dart
|
| index a428b815efa49ad01486119d2ac90ab2454e210a..50c7cb236494940c65c624f2f9cf57479935b100 100644
|
| --- a/tests/lib/async/slow_sink_test.dart
|
| +++ b/tests/lib/async/slow_sink_test.dart
|
| @@ -42,7 +42,7 @@ class DataProvider extends StreamController {
|
| bool run = true;
|
| send() {
|
| if (!run) return;
|
| - var wait = add(new List(bytesPerSecond * ms ~/ 1000));
|
| + var wait = add(new List.fixedLength(bytesPerSecond * ms ~/ 1000));
|
| if (wait != null) {
|
| wait.then(() {
|
| new Timer(ms, (_) => send());
|
|
|