| Index: tests/lib/async/zone_empty_description_test.dart
|
| diff --git a/tests/lib/async/zone_empty_description_test.dart b/tests/lib/async/zone_empty_description_test.dart
|
| index 1a35dc0ea99b9294d92b90172b47619c4cc70fdd..30e494f20f9dd384ad8a2a7695d5b7174ff81783 100644
|
| --- a/tests/lib/async/zone_empty_description_test.dart
|
| +++ b/tests/lib/async/zone_empty_description_test.dart
|
| @@ -51,8 +51,7 @@ testForkedZone(Zone forked) {
|
| asyncStart();
|
| bool asyncDidRun = false;
|
| forked.scheduleMicrotask(() {
|
| - // The scheduleMicrotask functions on the Zone don't bind the closures.
|
| - Expect.identical(Zone.ROOT, Zone.current);
|
| + Expect.identical(forked, Zone.current);
|
| asyncDidRun = true;
|
| asyncEnd();
|
| });
|
| @@ -62,8 +61,7 @@ testForkedZone(Zone forked) {
|
| asyncStart();
|
| bool timerDidRun = false;
|
| forked.createTimer(const Duration(milliseconds: 0), () {
|
| - // The createTimer functions on the Zone don't bind the closures.
|
| - Expect.identical(Zone.ROOT, Zone.current);
|
| + Expect.identical(forked, Zone.current);
|
| timerDidRun = true;
|
| asyncEnd();
|
| });
|
|
|