| Index: runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| ===================================================================
|
| --- runtime/tests/vm/dart/isolate_mirror_local_test.dart (revision 25456)
|
| +++ runtime/tests/vm/dart/isolate_mirror_local_test.dart (working copy)
|
| @@ -483,13 +483,9 @@
|
| Expect.isTrue(false);
|
| })
|
| .catchError((error) {
|
| - Expect.isTrue(error is MirroredUncaughtExceptionError);
|
| - Expect.equals(const Symbol('MyException'),
|
| - error.exception_mirror.type.simpleName);
|
| + Expect.isTrue(error is MyException);
|
| Expect.equals('MyException: from methodWithException',
|
| - error.exception_string);
|
| - Expect.isTrue(error.stacktrace.toString().contains(
|
| - 'isolate_mirror_local_test.dart'));
|
| + error.toString());
|
| testDone('testMirrorErrors1');
|
| });
|
|
|
|
|