| Index: tests/standalone/io/file_constructor_test.dart
|
| diff --git a/tests/standalone/io/file_constructor_test.dart b/tests/standalone/io/file_constructor_test.dart
|
| index 4ed7bb7900265ab21449991a73e35a1d5d1288c2..251e1adfd7b2cee072a169d3732cba81ffc6636e 100644
|
| --- a/tests/standalone/io/file_constructor_test.dart
|
| +++ b/tests/standalone/io/file_constructor_test.dart
|
| @@ -20,8 +20,8 @@ void main() {
|
| new File(1);
|
| Expect.fail('Error expected.');
|
| } on ArgumentError catch(e) {
|
| - if (developerMode) throw;
|
| + if (developerMode) rethrow;
|
| } on TypeError catch(e) {
|
| - if (!developerMode) throw;
|
| + if (!developerMode) rethrow;
|
| }
|
| }
|
|
|