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

Unified Diff: tests/corelib/big_integer_vm_test.dart

Issue 11229003: Revert "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/co19/co19-runtime.status ('k') | tests/corelib/exception_implementation_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/big_integer_vm_test.dart
diff --git a/tests/corelib/big_integer_vm_test.dart b/tests/corelib/big_integer_vm_test.dart
index 0f8271ab3c41e3a118a46b16d3364c463ba9017d..7c54a8ccab5da9dd26adbb9402dde9e7c84131b6 100644
--- a/tests/corelib/big_integer_vm_test.dart
+++ b/tests/corelib/big_integer_vm_test.dart
@@ -138,7 +138,7 @@ class BigIntegerTest {
bool exceptionCaught = false;
try {
var a = 1 << 1111111111111111111111111111;
- } on OutOfMemoryError catch (e) {
+ } on OutOfMemoryException catch (e) {
exceptionCaught = true;
}
Expect.equals(true, exceptionCaught);
« no previous file with comments | « tests/co19/co19-runtime.status ('k') | tests/corelib/exception_implementation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698