| Index: tests/html/inner_frame_test.dart
|
| diff --git a/tests/html/inner_frame_test.dart b/tests/html/inner_frame_test.dart
|
| index 9984b96a980196d55014380b54a0e82183f933bf..799cb63e833d522c259cda82db0351f00b68bba6 100644
|
| --- a/tests/html/inner_frame_test.dart
|
| +++ b/tests/html/inner_frame_test.dart
|
| @@ -17,7 +17,7 @@ main() {
|
| div.id = "illegalFrameElement";
|
| parentDocument.body.nodes.add(div);
|
| Expect.fail('Should not reach here.');
|
| - } on NoSuchMethodException catch (e) {
|
| + } on NoSuchMethodError catch (e) {
|
| // Expected.
|
| }
|
|
|
| @@ -31,7 +31,7 @@ main() {
|
| Expect.fail('Should not reach here.');
|
| } catch (e) {
|
| // Expected.
|
| - // TODO(vsm): Enforce this is a NoSuchMethodException.
|
| + // TODO(vsm): Enforce this is a NoSuchMethodError.
|
| }
|
| return;
|
| }
|
|
|