| Index: tests/corelib/list_as_map_test.dart
|
| diff --git a/tests/corelib/list_as_map_test.dart b/tests/corelib/list_as_map_test.dart
|
| index 03f55403c272025c14011d600e328e4dc444d685..51e637f0fde5bac5689c3854e35617dcd47316be 100644
|
| --- a/tests/corelib/list_as_map_test.dart
|
| +++ b/tests/corelib/list_as_map_test.dart
|
| @@ -2,6 +2,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +import "package:expect/expect.dart";
|
| +
|
| void testListMapCorrespondence(List list, Map map) {
|
| Expect.equals(list.length, map.length);
|
| for (int i = 0; i < list.length; i++) {
|
|
|