| 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 2771bb266fdba7730677de62aeac277f39cfc6bf..d9c0c9af0ce8f9271d488538d730589f064c693c 100644
|
| --- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| +++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| @@ -311,17 +311,17 @@ void testLibrariesMap(Map libraries) {
|
| Expect.equals("ClassMirror on 'List'", list_intf.toString());
|
|
|
| // Lookup a class from a library and make sure it is sane.
|
| - ClassMirror oom_cls = core_lib.members['OutOfMemoryException'];
|
| + ClassMirror oom_cls = core_lib.members['OutOfMemoryError'];
|
| Expect.isTrue(oom_cls is ClassMirror);
|
| - Expect.equals('OutOfMemoryException', oom_cls.simpleName);
|
| - Expect.equals('dart:core.OutOfMemoryException', oom_cls.qualifiedName);
|
| + Expect.equals('OutOfMemoryError', oom_cls.simpleName);
|
| + Expect.equals('dart:core.OutOfMemoryError', oom_cls.qualifiedName);
|
| Expect.isFalse(oom_cls.isPrivate);
|
| Expect.equals('Object', oom_cls.superclass.simpleName);
|
| Expect.isTrue(oom_cls.defaultFactory === null);
|
| Expect.equals('dart:core', oom_cls.owner.simpleName);
|
| Expect.isTrue(oom_cls.isClass);
|
| Expect.equals('Exception', oom_cls.superinterfaces[0].simpleName);
|
| - Expect.equals("ClassMirror on 'OutOfMemoryException'",
|
| + Expect.equals("ClassMirror on 'OutOfMemoryError'",
|
| oom_cls.toString());
|
| testDone('testLibrariesMap');
|
| }
|
|
|