| Index: tests/corelib_strong/list_insert_all_test.dart
|
| diff --git a/tests/corelib_strong/list_insert_all_test.dart b/tests/corelib_strong/list_insert_all_test.dart
|
| index a1d025a743e92012027785eb3c85d3a24589a50b..08b08f49c8833d5a612182b15e56def9a08ecaaa 100644
|
| --- a/tests/corelib_strong/list_insert_all_test.dart
|
| +++ b/tests/corelib_strong/list_insert_all_test.dart
|
| @@ -75,10 +75,10 @@ main() {
|
| expectUE(() => test([1, 2, 3].toList(growable: false), 0, [4, 5]));
|
| }
|
|
|
| -void expectRE(Function f) {
|
| +void expectRE(void f()) {
|
| Expect.throws(f, (e) => e is RangeError);
|
| }
|
|
|
| -void expectUE(Function f) {
|
| +void expectUE(void f()) {
|
| Expect.throws(f, (e) => e is UnsupportedError);
|
| }
|
|
|