| Index: lib/unittest/map_matchers.dart
 | 
| ===================================================================
 | 
| --- lib/unittest/map_matchers.dart	(revision 8828)
 | 
| +++ lib/unittest/map_matchers.dart	(working copy)
 | 
| @@ -41,7 +41,7 @@
 | 
|    Description describeMismatch(item, Description mismatchDescription) {
 | 
|      if (!item.containsKey(_key)) {
 | 
|        return mismatchDescription.addDescriptionOf(item).
 | 
| -          add("' doesn't contain key '").addDescriptionOf(_key);
 | 
| +          add(" doesn't contain key ").addDescriptionOf(_key);
 | 
|      } else {
 | 
|        mismatchDescription.add(' contains key ').addDescriptionOf(_key).
 | 
|            add(' but with value ');
 | 
| 
 |