| Index: runtime/vm/snapshot_test.dart
|
| diff --git a/runtime/vm/snapshot_test.dart b/runtime/vm/snapshot_test.dart
|
| index 2ba9fa2882010a3146fd302d4271ab86dc13d4f9..c3909fe90b53149d2022170f393eeaa37c3a0e37 100644
|
| --- a/runtime/vm/snapshot_test.dart
|
| +++ b/runtime/vm/snapshot_test.dart
|
| @@ -1317,7 +1317,7 @@ message_test_main() {
|
| List local_list1 = ["Hello", "World", "Hello", 0xffffffffff];
|
| List local_list2 = [null, local_list1, local_list1 ];
|
| List local_list3 = [local_list2, 2.0, true, false, 0xffffffffff];
|
| - List sendObject = new List(5);
|
| + List sendObject = new List.fixedLength(5);
|
| sendObject[0] = local_list1;
|
| sendObject[1] = sendObject;
|
| sendObject[2] = local_list2;
|
|
|