| 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 f76089e61cd0d7225f00e7d6681b240c2ed1e1ba..e166e107f94a0ee9e0137d627653bc3d3fbe85d2 100644
|
| --- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| +++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| @@ -327,11 +327,11 @@ void testLibrariesMap(Map libraries) {
|
| Expect.equals(const Symbol('dart.core.OutOfMemoryError'),
|
| oom_cls.qualifiedName);
|
| Expect.isFalse(oom_cls.isPrivate);
|
| - Expect.equals(const Symbol('Error'), oom_cls.superclass.simpleName);
|
| + Expect.equals(const Symbol('Object'), oom_cls.superclass.simpleName);
|
| Expect.isTrue(oom_cls.defaultFactory == null);
|
| Expect.equals(const Symbol('dart.core'), oom_cls.owner.simpleName);
|
| Expect.isTrue(oom_cls.isClass);
|
| - Expect.isTrue(oom_cls.superinterfaces.isEmpty);
|
| + Expect.equals(const Symbol('Error'), oom_cls.superinterfaces[0].simpleName);
|
| // TODO(ahe): toString() test disabled for now as Symbols are 100% opaque.
|
| // Expect.equals("ClassMirror on 'OutOfMemoryError'",
|
| // oom_cls.toString());
|
|
|