Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Unified Diff: tests/compiler/dart2js_foreign/native_window1_test.dart

Issue 10909166: Rename NoSuchMethodException to NoSuchMethodError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js_foreign/native_window1_test.dart
diff --git a/tests/compiler/dart2js_foreign/native_window1_test.dart b/tests/compiler/dart2js_foreign/native_window1_test.dart
index 6da4213791ce5262f11b88f55603cf68aa89dcdf..7c892378d24dad9fc1f3fdbc5ca2ddf35f0ae027 100644
--- a/tests/compiler/dart2js_foreign/native_window1_test.dart
+++ b/tests/compiler/dart2js_foreign/native_window1_test.dart
@@ -21,5 +21,5 @@ main() {
// it.
Window win = new Win();
Expect.throws(() => win.document,
- (e) => e is NoSuchMethodException);
+ (e) => e is NoSuchMethodError);
}

Powered by Google App Engine
This is Rietveld 408576698