| Index: tests/corelib/iterable_skip_test.dart
|
| diff --git a/tests/corelib/iterable_skip_test.dart b/tests/corelib/iterable_skip_test.dart
|
| index 2910d3bc0d2dc612b1126595f18a734cd8662a6f..59d604dbf6c5328e0b953a1ba48195e387741052 100644
|
| --- a/tests/corelib/iterable_skip_test.dart
|
| +++ b/tests/corelib/iterable_skip_test.dart
|
| @@ -254,5 +254,6 @@ main() {
|
| testSkipTake(collection, 15, 5);
|
| testSkipTake(collection, 20, 0);
|
| testSkipTake(collection, 20, 5);
|
| + Expect.throws(() => longList.skip(-1), (e) => e is RangeError);
|
| }
|
| }
|
|
|