| Index: tests/language/call_through_null_getter_test.dart
|
| diff --git a/tests/language/call_through_null_getter_test.dart b/tests/language/call_through_null_getter_test.dart
|
| index c1ea399a4f5d727db6f2969b67ca95a9a84d2e63..72b33acc28424e884898a75686f24efeb15fb781 100644
|
| --- a/tests/language/call_through_null_getter_test.dart
|
| +++ b/tests/language/call_through_null_getter_test.dart
|
| @@ -70,7 +70,7 @@ class CallThroughNullGetterTest {
|
| try {
|
| fn();
|
| Expect.equals(true, false); // Shouldn't reach this.
|
| - } catch (var e) {
|
| + } catch (e) {
|
| caught = true;
|
| result = e;
|
| }
|
|
|