Chromium Code Reviews| Index: tests/corelib/map_from_test.dart |
| diff --git a/tests/corelib/map_from_test.dart b/tests/corelib/map_from_test.dart |
| index bc47e9d448ce817cdab6e4fd9488e0939a24cd0f..17896ac85ee8248af77d866a8920be6c5b8bab14 100644 |
| --- a/tests/corelib/map_from_test.dart |
| +++ b/tests/corelib/map_from_test.dart |
| @@ -71,7 +71,7 @@ testWithLinkedMap() { |
| var map = const { 'b': 1, 'a': 2, 'c': 3 }; |
| var otherMap = new LinkedHashMap.from(map); |
| Expect.isTrue(otherMap is Map); |
| - Expect.isTrue(otherMap is HashMap); |
| + Expect.isTrue(otherMap is !HashMap); |
|
floitsch
2013/02/13 15:54:06
we usually put the "!" with the "is".
Lasse Reichstein Nielsen
2013/02/14 10:18:12
Done.
|
| Expect.isTrue(otherMap is LinkedHashMap); |
| var i = 1; |
| for (var val in map.values) { |