| Index: tests/lib/async/future_timeout_test.dart
|
| diff --git a/tests/lib/async/future_timeout_test.dart b/tests/lib/async/future_timeout_test.dart
|
| index d81c87faca48a8686a0457e297932f65057eb6b4..cd306450f96d6c942ddc032ba161b262cbeffbb0 100644
|
| --- a/tests/lib/async/future_timeout_test.dart
|
| +++ b/tests/lib/async/future_timeout_test.dart
|
| @@ -142,7 +142,6 @@ main() {
|
| });
|
|
|
| test("timeoutZone", () {
|
| - var initialZone = Zone.current;
|
| Zone forked;
|
| int registerCallDelta = 0;
|
| bool callbackCalled = false;
|
| @@ -170,7 +169,7 @@ main() {
|
| timedOut.then(expectAsync1((v) {
|
| expect(callbackCalled, true);
|
| expect(registerCallDelta, 0);
|
| - expect(Zone.current, initialZone);
|
| + expect(Zone.current, Zone.ROOT);
|
| expect(v, 42);
|
| }));
|
| });
|
|
|