| Index: tests/lib_strong/mirrors/list_constructor_test.dart
|
| diff --git a/tests/lib_strong/mirrors/list_constructor_test.dart b/tests/lib_strong/mirrors/list_constructor_test.dart
|
| index 87125c5caadf1757546687b3c3f802663ccd09f8..7fa9f5875d0d6ae5297fb1009c66d098a7bce3f1 100644
|
| --- a/tests/lib_strong/mirrors/list_constructor_test.dart
|
| +++ b/tests/lib_strong/mirrors/list_constructor_test.dart
|
| @@ -9,7 +9,7 @@ import 'dart:mirrors';
|
| main() {
|
| var cls = reflectClass(List);
|
| Expect.throws(() => cls.newInstance(const Symbol(''), [null]),
|
| - (e) => e is ArgumentError);
|
| + (e) => e is ArgumentError);
|
|
|
| var list = cls.newInstance(const Symbol(''), [42]).reflectee;
|
| // Check that the list is fixed.
|
|
|