Chromium Code Reviews| Index: runtime/tests/vm/dart/isolate_mirror_local_test.dart |
| =================================================================== |
| --- runtime/tests/vm/dart/isolate_mirror_local_test.dart (revision 25390) |
| +++ 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( |
|
rmacnak
2013/07/24 02:52:45
We don't have stack traces by default anymore, and
|
| - 'isolate_mirror_local_test.dart')); |
| + error.toString()); |
| testDone('testMirrorErrors1'); |
| }); |