| Index: tests/lib_strong/async/stream_periodic4_test.dart
 | 
| diff --git a/tests/lib_strong/async/stream_periodic4_test.dart b/tests/lib_strong/async/stream_periodic4_test.dart
 | 
| index fac4742c1a15fc5e623178ccd1ffe28db7f5c60a..25a87772f8ef236ee6333c2f7ab8670e19791e45 100644
 | 
| --- a/tests/lib_strong/async/stream_periodic4_test.dart
 | 
| +++ b/tests/lib_strong/async/stream_periodic4_test.dart
 | 
| @@ -9,7 +9,7 @@ import "dart:async";
 | 
|  import 'package:unittest/unittest.dart';
 | 
|  
 | 
|  void runTest(period, maxElapsed, pauseDuration) {
 | 
| -  Function done = expectAsync(() { });
 | 
| +  Function done = expectAsync(() {});
 | 
|  
 | 
|    Stopwatch watch = new Stopwatch()..start();
 | 
|    Stream stream = new Stream.periodic(period, (x) => x);
 | 
| @@ -43,8 +43,7 @@ void runTest(period, maxElapsed, pauseDuration) {
 | 
|  
 | 
|  main() {
 | 
|    test("stream-periodic4", () {
 | 
| -    runTest(const Duration(milliseconds: 2),
 | 
| -            const Duration(milliseconds: 8),
 | 
| -            const Duration(milliseconds: 10));
 | 
| +    runTest(const Duration(milliseconds: 2), const Duration(milliseconds: 8),
 | 
| +        const Duration(milliseconds: 10));
 | 
|    });
 | 
|  }
 | 
| 
 |