Index: tests/lib/collection/hash_map_test.dart |
diff --git a/tests/lib/collection/hash_map_test.dart b/tests/lib/collection/hash_map_test.dart |
index f0f1d541a631d15859e05bb412e1a2e9a8a364b2..44dbef405eeeaf4018c5431a3cc723f74a981068 100644 |
--- a/tests/lib/collection/hash_map_test.dart |
+++ b/tests/lib/collection/hash_map_test.dart |
@@ -13,8 +13,8 @@ void main() { |
equals(a, b) => a.toLowerCase() == b.toLowerCase(); |
for (var m in [ |
- new HashMap<String,int>(equals: equals, hashCode: hash), |
- new LinkedHashMap<String,int>(equals: equals, hashCode: hash), |
+ new HashMap<String, int>(equals: equals, hashCode: hash), |
+ new LinkedHashMap<String, int>(equals: equals, hashCode: hash), |
]) { |
m["Abel"] = 42; |
for (var key in ["Abel", "abel", "ABEL", "Abel"]) { |
@@ -28,8 +28,8 @@ void main() { |
abshash(n) => n.abs(); |
abseq(a, b) => a.abs() == b.abs(); |
for (var m in [ |
- new HashMap<int,int>(equals: abseq, hashCode: abshash), |
- new LinkedHashMap<int,int>(equals: abseq, hashCode: abshash), |
+ new HashMap<int, int>(equals: abseq, hashCode: abshash), |
+ new LinkedHashMap<int, int>(equals: abseq, hashCode: abshash), |
]) { |
m[1] = 42; |
for (var key in [1, -1, 1]) { |