| Index: tests/corelib/linked_hash_map_from_iterables_test.dart
|
| diff --git a/tests/corelib/linked_hash_map_from_iterables_test.dart b/tests/corelib/linked_hash_map_from_iterables_test.dart
|
| index 0212dd4b4ef7f7041d5f00a44928eb961472f528..37a55344fa86484c4ea8e77466d47924b71ca850 100644
|
| --- a/tests/corelib/linked_hash_map_from_iterables_test.dart
|
| +++ b/tests/corelib/linked_hash_map_from_iterables_test.dart
|
| @@ -18,7 +18,6 @@ void positiveTest() {
|
| var map = new LinkedHashMap.fromIterables([1, 2, 3], ["one", "two", "three"]);
|
| Expect.isTrue(map is Map);
|
| Expect.isTrue(map is LinkedHashMap);
|
| - Expect.isFalse(map is HashMap);
|
|
|
| Expect.equals(3, map.length);
|
| Expect.equals(3, map.keys.length);
|
| @@ -33,7 +32,6 @@ void emptyMapTest() {
|
| var map = new LinkedHashMap.fromIterables([], []);
|
| Expect.isTrue(map is Map);
|
| Expect.isTrue(map is LinkedHashMap);
|
| - Expect.isFalse(map is HashMap);
|
|
|
| Expect.equals(0, map.length);
|
| Expect.equals(0, map.keys.length);
|
| @@ -52,7 +50,6 @@ void equalElementsTest() {
|
| var map = new LinkedHashMap.fromIterables([1, 2, 2], ["one", "two", "three"]);
|
| Expect.isTrue(map is Map);
|
| Expect.isTrue(map is LinkedHashMap);
|
| - Expect.isFalse(map is HashMap);
|
|
|
| Expect.equals(2, map.length);
|
| Expect.equals(2, map.keys.length);
|
|
|