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

Unified Diff: tests/corelib/core_runtime_types_test.dart

Issue 11415028: Remove NullPointerException. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed VM bugs. Created 8 years, 1 month 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/corelib/core_runtime_types_test.dart
diff --git a/tests/corelib/core_runtime_types_test.dart b/tests/corelib/core_runtime_types_test.dart
index e3d94ce2cbf75fc17029af6b41196a092506341a..c40b781b767910073846e086bcf14604fcea4f14 100644
--- a/tests/corelib/core_runtime_types_test.dart
+++ b/tests/corelib/core_runtime_types_test.dart
@@ -47,7 +47,6 @@ class CoreRuntimeTypesTest {
static assertTypeError(void f()) {
Expect.throws(f, (exception) => (exception is TypeError) ||
(exception is NoSuchMethodError) ||
- (exception is NullPointerException) ||
(exception is ArgumentError));
}

Powered by Google App Engine
This is Rietveld 408576698