| Index: tests/lib/async/stream_periodic2_test.dart
|
| diff --git a/tests/lib/async/stream_periodic2_test.dart b/tests/lib/async/stream_periodic2_test.dart
|
| index ce0bddaa8719efe82090cf2839bbc4174fce7caa..100261db8bacf20f2cbdec5ef0757fdfaa6e6bce 100644
|
| --- a/tests/lib/async/stream_periodic2_test.dart
|
| +++ b/tests/lib/async/stream_periodic2_test.dart
|
| @@ -10,8 +10,8 @@ import 'package:unittest/unittest.dart';
|
|
|
| main() {
|
| test("stream-periodic2", () {
|
| - Stream stream = new Stream.periodic(const Duration(milliseconds: 1),
|
| - (x) => x);
|
| + Stream stream =
|
| + new Stream.periodic(const Duration(milliseconds: 1), (x) => x);
|
| int receivedCount = 0;
|
| var subscription;
|
| subscription = stream.listen(expectAsync((data) {
|
|
|