| Index: tests/lib_strong/mirrors/to_string_test.dart
|
| diff --git a/tests/lib_strong/mirrors/to_string_test.dart b/tests/lib_strong/mirrors/to_string_test.dart
|
| index 8344bc4de7fa245445f2b7bd9b7af4b832f6c6eb..23a04990f6cdd928d491f02f3ab31b741c63807d 100644
|
| --- a/tests/lib_strong/mirrors/to_string_test.dart
|
| +++ b/tests/lib_strong/mirrors/to_string_test.dart
|
| @@ -20,13 +20,11 @@ main() {
|
| expect("TypeMirror on 'dynamic'", mirrors.dynamicType);
|
| expect("TypeMirror on 'void'", mirrors.voidType);
|
| expect("LibraryMirror on 'test.to_string_test'",
|
| - mirrors.findLibrary(#test.to_string_test));
|
| + mirrors.findLibrary(#test.to_string_test));
|
| expect("InstanceMirror on 1", reflect(1));
|
| expect("ClassMirror on 'Foo'", reflectClass(Foo));
|
| - expect("VariableMirror on 'field'",
|
| - reflectClass(Foo).declarations[#field]);
|
| - expect("MethodMirror on 'method'",
|
| - reflectClass(Foo).declarations[#method]);
|
| + expect("VariableMirror on 'field'", reflectClass(Foo).declarations[#field]);
|
| + expect("MethodMirror on 'method'", reflectClass(Foo).declarations[#method]);
|
| String s = reflect(main).toString();
|
| Expect.isTrue(s.startsWith("ClosureMirror on '"), s);
|
| }
|
|
|