| Index: tests/lib/async/zone_register_callback_test.dart
|
| diff --git a/tests/lib/async/zone_register_callback_test.dart b/tests/lib/async/zone_register_callback_test.dart
|
| index e05ed8e14254367f4f9aed768102737458de93f2..b4691d1550c73d2ff3fcdabff82482294d2cf4bf 100644
|
| --- a/tests/lib/async/zone_register_callback_test.dart
|
| +++ b/tests/lib/async/zone_register_callback_test.dart
|
| @@ -15,16 +15,16 @@ main() {
|
| Expect.identical(Zone.ROOT, Zone.current);
|
| Zone forked = Zone.current.fork(specification: new ZoneSpecification(
|
| registerCallback: (Zone self, ZoneDelegate parent, Zone origin, f()) {
|
| - // The zone is still the same as when origin.run was invoked, which
|
| - // is the root zone. (The origin zone hasn't been set yet).
|
| - Expect.identical(Zone.current, Zone.ROOT);
|
| - // Note that not forwarding is completely legal, though not encouraged.
|
| - var capturedValue = valueToCapture;
|
| - return parent.registerCallback(origin, () {
|
| - restoredValue = capturedValue;
|
| - return f();
|
| - });
|
| - }));
|
| + // The zone is still the same as when origin.run was invoked, which
|
| + // is the root zone. (The origin zone hasn't been set yet).
|
| + Expect.identical(Zone.current, Zone.ROOT);
|
| + // Note that not forwarding is completely legal, though not encouraged.
|
| + var capturedValue = valueToCapture;
|
| + return parent.registerCallback(origin, () {
|
| + restoredValue = capturedValue;
|
| + return f();
|
| + });
|
| + }));
|
|
|
| valueToCapture = 499;
|
| var fun = () => 99;
|
| @@ -36,4 +36,4 @@ main() {
|
| var result = registered();
|
| Expect.equals(99, result);
|
| Expect.equals(499, restoredValue);
|
| -}
|
| +}
|
|
|