| 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);
|
|
|