| Index: tests/corelib/string_base_vm_test.dart
|
| diff --git a/tests/corelib/string_base_vm_test.dart b/tests/corelib/string_base_vm_test.dart
|
| index 1acf12ea59f4450a0a7b3f88897f9e3e10dab0da..5e6f682ecdd1f919058abb94ad7577c6043effb0 100644
|
| --- a/tests/corelib/string_base_vm_test.dart
|
| +++ b/tests/corelib/string_base_vm_test.dart
|
| @@ -37,6 +37,8 @@ class StringBaseTest {
|
| String s4 = new String.fromCharCodes([0.0]);
|
| } on ArgumentError catch (ex) {
|
| exception_caught = true;
|
| + } on TypeError catch (ex) {
|
| + exception_caught = true;
|
| }
|
| Expect.equals(true, exception_caught);
|
| exception_caught = false;
|
|
|