| Index: tests/corelib/integer_to_radix_string_test.dart
|
| diff --git a/tests/corelib/integer_to_radix_string_test.dart b/tests/corelib/integer_to_radix_string_test.dart
|
| index 24343931f7c8c1193cb4686c8b7cb5b90c7fed5e..a8cafb5a5e279a0c00aa353d37e0a1e5e8c06f11 100644
|
| --- a/tests/corelib/integer_to_radix_string_test.dart
|
| +++ b/tests/corelib/integer_to_radix_string_test.dart
|
| @@ -20,7 +20,7 @@ main() {
|
| try {
|
| 42.toRadixString(radix);
|
| Expect.fail("Exception expected");
|
| - } on IllegalArgumentException catch (e) {
|
| + } on ArgumentError catch (e) {
|
| // Nothing to do.
|
| }
|
| }
|
|
|