| Index: tests/lib_strong/mirrors/top_level_accessors_test.dart
|
| diff --git a/tests/lib_strong/mirrors/top_level_accessors_test.dart b/tests/lib_strong/mirrors/top_level_accessors_test.dart
|
| index 1caef2d24d6838314a31b21bb0f0642d62b269ca..78b265a116653c4622fee08743022e025b6c87ee 100644
|
| --- a/tests/lib_strong/mirrors/top_level_accessors_test.dart
|
| +++ b/tests/lib_strong/mirrors/top_level_accessors_test.dart
|
| @@ -18,8 +18,8 @@ set accessor(value) {
|
| }
|
|
|
| main() {
|
| - LibraryMirror library = currentMirrorSystem()
|
| - .findLibrary(#test.top_level_accessors_test);
|
| + LibraryMirror library =
|
| + currentMirrorSystem().findLibrary(#test.top_level_accessors_test);
|
| field = 42;
|
| Expect.equals(42, library.getField(#accessor).reflectee);
|
| Expect.equals(87, library.setField(#accessor, 87).reflectee);
|
|
|