| Index: tests/corelib/hash_map_test.dart
|
| diff --git a/tests/corelib/hash_map_test.dart b/tests/corelib/hash_map_test.dart
|
| index af78d953e233e8b79ea21a668ac4232946201661..8d92047fd4f6ee162792a3bec10bee6be2c6087e 100644
|
| --- a/tests/corelib/hash_map_test.dart
|
| +++ b/tests/corelib/hash_map_test.dart
|
| @@ -11,10 +11,10 @@ class HashMapTest {
|
| // is used to verify that the test script is picking up these tests.
|
| var m = new Map();
|
| Expect.equals(0, m.length);
|
| - Expect.equals(true, m.isEmpty());
|
| + Expect.equals(true, m.isEmpty);
|
| m["one"] = 1;
|
| Expect.equals(1, m.length);
|
| - Expect.equals(false, m.isEmpty());
|
| + Expect.equals(false, m.isEmpty);
|
| Expect.equals(1, m["one"]);
|
| }
|
| }
|
|
|