| Index: tests/standalone/float_array_test.dart
|
| diff --git a/tests/standalone/float_array_test.dart b/tests/standalone/float_array_test.dart
|
| index 68d71e9233de4028e41d74c157aed8e7496671c8..dab3734f693ed5051f89baee00113ef363e0979d 100644
|
| --- a/tests/standalone/float_array_test.dart
|
| +++ b/tests/standalone/float_array_test.dart
|
| @@ -50,6 +50,9 @@ void testIndexOutOfRange() {
|
| List<num> list = const [0.0, 1.0, 2.0, 3.0];
|
|
|
| Expect.throws(() {
|
| + floatArray[5] = 2.0;
|
| + });
|
| + Expect.throws(() {
|
| floatArray.setRange(0, 4, list);
|
| });
|
|
|
|
|