| Index: runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| diff --git a/runtime/tests/vm/dart/isolate_mirror_local_test.dart b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| index 8f7957740565c24d138e2189bf76f2404c194c1c..1576139df418491aaa0235e0149eaf92e22b51ef 100644
|
| --- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| +++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| @@ -171,6 +171,19 @@ void testRootLibraryMirror(LibraryMirror lib_mirror) {
|
| // Check that the classes map is complete.
|
| keys = lib_mirror.classes.keys.map(MirrorSystem.getName).toList();
|
| sort(keys);
|
| + print(keys);
|
| + Expect.equals('['
|
| + 'GenericClass, '
|
| + 'MyClass, '
|
| + 'MyException, '
|
| + 'MyInterface, '
|
| + 'MySuperClass]',
|
| + '$keys');
|
| +
|
| + // Check that the types map is complete.
|
| + keys = lib_mirror.types.keys.map(MirrorSystem.getName).toList();
|
| + sort(keys);
|
| + print(keys);
|
| Expect.equals('['
|
| 'FuncType, '
|
| 'GenericClass, '
|
|
|