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

Unified Diff: tests/corelib/exception_implementation_test.dart

Issue 11233004: Rename OutOfMemoryException to OutOfMemoryError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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/corelib/big_integer_vm_test.dart ('k') | tests/language/import_core_impl_no_prefix_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/exception_implementation_test.dart
diff --git a/tests/corelib/exception_implementation_test.dart b/tests/corelib/exception_implementation_test.dart
index 23b772a9d7daca894b40a1aa4ee5c548bf708fe4..60eb28e01421a9e59132309dae73f0fab474a9a8 100644
--- a/tests/corelib/exception_implementation_test.dart
+++ b/tests/corelib/exception_implementation_test.dart
@@ -3,7 +3,6 @@
// BSD-style license that can be found in the LICENSE file.
#library("ExceptionImplementationTest.dart");
-#import("dart:coreimpl");
main() {
final msg = 1;
@@ -12,7 +11,6 @@ main() {
Expect.fail("Unreachable");
} on Exception catch (e) {
Expect.isTrue(e is Exception);
- Expect.isTrue(e is ExceptionImplementation);
Expect.equals("Exception: $msg", e.toString());
}
}
« no previous file with comments | « tests/corelib/big_integer_vm_test.dart ('k') | tests/language/import_core_impl_no_prefix_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698