| Index: tests/lib/async/zone_empty_description2_test.dart
|
| diff --git a/tests/lib/async/zone_empty_description2_test.dart b/tests/lib/async/zone_empty_description2_test.dart
|
| index 8fd4ad1fe4016be019d6f4b4590a8e7ba8cd8a2c..ce123e98c5cfad597d1911bed0a1b51b8fec5911 100644
|
| --- a/tests/lib/async/zone_empty_description2_test.dart
|
| +++ b/tests/lib/async/zone_empty_description2_test.dart
|
| @@ -14,7 +14,7 @@ testEmptyZoneSpecification() {
|
| asyncStart();
|
| bool timerDidRun = false;
|
| forked.createTimer(const Duration(milliseconds: 20), () {
|
| - // The createTimer functions on the Zone binds the closures.
|
| + // The createTimer function on the Zone binds the closures.
|
| Expect.identical(forked, Zone.current);
|
| timerDidRun = true;
|
| asyncEnd();
|
| @@ -29,7 +29,7 @@ testEmptyZoneSpecification() {
|
| timer.cancel();
|
| asyncEnd();
|
| }
|
| - // The createPeriodicTimer functions on the Zone binds the closures.
|
| + // The createPeriodicTimer function on the Zone binds the closures.
|
| Expect.identical(forked, Zone.current);
|
| });
|
| Expect.identical(Zone.ROOT, Zone.current);
|
|
|