Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(639)

Unified Diff: lib/unittest/map_matchers.dart

Issue 10579008: Added test setup/teardown. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 ');

Powered by Google App Engine
This is Rietveld 408576698