| Index: tests/lib_strong/async/timer_cancel1_test.dart
|
| diff --git a/tests/lib_strong/async/timer_cancel1_test.dart b/tests/lib_strong/async/timer_cancel1_test.dart
|
| index 3a3535759968834926ece67a8c5776174b8e1bb9..fdd806e5c02b276152d097a5a89b9dda3f3fc311 100644
|
| --- a/tests/lib_strong/async/timer_cancel1_test.dart
|
| +++ b/tests/lib_strong/async/timer_cancel1_test.dart
|
| @@ -3,6 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| library timer_cancel1_test;
|
| +
|
| import 'dart:async';
|
| import 'package:unittest/unittest.dart';
|
|
|
| @@ -20,9 +21,9 @@ main() {
|
| canceleeTimer.cancel();
|
| }
|
|
|
| - cancelerTimer = new Timer(const Duration(milliseconds: 1),
|
| - expectAsync(handler));
|
| - canceleeTimer = new Timer(const Duration(milliseconds: 1000),
|
| - expectAsync(unreachable, count: 0));
|
| + cancelerTimer =
|
| + new Timer(const Duration(milliseconds: 1), expectAsync(handler));
|
| + canceleeTimer = new Timer(
|
| + const Duration(milliseconds: 1000), expectAsync(unreachable, count: 0));
|
| });
|
| }
|
|
|