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

Unified Diff: tests/language/private_main.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
« no previous file with comments | « tests/language/no_such_method_negative_test.dart ('k') | tests/language/savannah_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/private_main.dart
diff --git a/tests/language/private_main.dart b/tests/language/private_main.dart
index 7bca65cdf10e31ab561a33ca958344075b77d854..531cbb0c0ebddb74cd066ac68a16b278afe26100 100644
--- a/tests/language/private_main.dart
+++ b/tests/language/private_main.dart
@@ -29,7 +29,7 @@ class PrivateMain {
} catch (e, trace) {
print(e);
print(trace);
- Expect.equals(true, e is NoSuchMethodException);
+ Expect.equals(true, e is NoSuchMethodError);
value = -1;
}
Expect.equals("Another Ring", value);
@@ -43,7 +43,7 @@ class PrivateMain {
} catch (e, trace) {
print(e);
print(trace);
- Expect.equals(true, e is NoSuchMethodException);
+ Expect.equals(true, e is NoSuchMethodError);
value = -1;
}
Expect.equals(-1, value);
« no previous file with comments | « tests/language/no_such_method_negative_test.dart ('k') | tests/language/savannah_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698