| Index: tests/corelib/list_test.dart
|
| diff --git a/tests/corelib/list_test.dart b/tests/corelib/list_test.dart
|
| index c26c1cf50b175f19d2885d4f37d917709ae4fc88..a72a189dde51aabb9261ee4c47a14c6916d32d1a 100644
|
| --- a/tests/corelib/list_test.dart
|
| +++ b/tests/corelib/list_test.dart
|
| @@ -33,6 +33,7 @@ void main() {
|
| testGrowableList(new List());
|
| testGrowableList(new List().toList());
|
| testGrowableList(new List(0).toList());
|
| + testGrowableList(new List.filled(0, null, growable: true));
|
| testGrowableList([]);
|
| testGrowableList((const []).toList());
|
| testGrowableList(new MyList([]));
|
|
|