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

Unified Diff: pkg/unittest/lib/src/map_matchers.dart

Issue 18442002: Add missing newline after Actual value in fail message. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
« no previous file with comments | « pkg/unittest/lib/src/iterable_matchers.dart ('k') | pkg/unittest/lib/src/numeric_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/src/map_matchers.dart
===================================================================
--- pkg/unittest/lib/src/map_matchers.dart (revision 24669)
+++ pkg/unittest/lib/src/map_matchers.dart (working copy)
@@ -9,7 +9,7 @@
*/
Matcher containsValue(value) => new _ContainsValue(value);
-class _ContainsValue extends BaseMatcher {
+class _ContainsValue extends Matcher {
final _value;
const _ContainsValue(this._value);
@@ -26,7 +26,7 @@
Matcher containsPair(key, value) =>
new _ContainsMapping(key, wrapMatcher(value));
-class _ContainsMapping extends BaseMatcher {
+class _ContainsMapping extends Matcher {
final _key;
final Matcher _valueMatcher;
« no previous file with comments | « pkg/unittest/lib/src/iterable_matchers.dart ('k') | pkg/unittest/lib/src/numeric_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698