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

Unified Diff: pkg/unittest/lib/src/iterable_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/interfaces.dart ('k') | pkg/unittest/lib/src/map_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/src/iterable_matchers.dart
===================================================================
--- pkg/unittest/lib/src/iterable_matchers.dart (revision 24669)
+++ pkg/unittest/lib/src/iterable_matchers.dart (working copy)
@@ -84,7 +84,7 @@
Matcher orderedEquals(Iterable expected) => new _OrderedEquals(expected);
-class _OrderedEquals extends BaseMatcher {
+class _OrderedEquals extends Matcher {
final Iterable _expected;
Matcher _matcher;
@@ -117,7 +117,7 @@
Matcher unorderedEquals(Iterable expected) =>
new _UnorderedEquals(expected);
-class _UnorderedEquals extends BaseMatcher {
+class _UnorderedEquals extends Matcher {
Iterable _expected;
_UnorderedEquals(Iterable this._expected);
@@ -177,7 +177,7 @@
* Iterable matchers match against [Iterable]s. We add this intermediate
* class to give better mismatch error messages than the base Matcher class.
*/
-abstract class _IterableMatcher extends BaseMatcher {
+abstract class _IterableMatcher extends Matcher {
const _IterableMatcher();
Description describeMismatch(item, Description mismatchDescription,
Map matchState, bool verbose) {
« no previous file with comments | « pkg/unittest/lib/src/interfaces.dart ('k') | pkg/unittest/lib/src/map_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698