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

Unified Diff: pkg/unittest/lib/src/numeric_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/map_matchers.dart ('k') | pkg/unittest/lib/src/operator_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/src/numeric_matchers.dart
===================================================================
--- pkg/unittest/lib/src/numeric_matchers.dart (revision 24669)
+++ pkg/unittest/lib/src/numeric_matchers.dart (working copy)
@@ -77,7 +77,7 @@
return value is int || value is double;
}
-class _OrderingComparison extends BaseMatcher {
+class _OrderingComparison extends Matcher {
/** Expected value. */
final _value;
/** What to return if actual == expected */
@@ -133,7 +133,7 @@
*/
Matcher closeTo(value, delta) => new _IsCloseTo(value, delta);
-class _IsCloseTo extends BaseMatcher {
+class _IsCloseTo extends Matcher {
final num _value, _delta;
const _IsCloseTo(this._value, this._delta);
@@ -191,7 +191,7 @@
*/
Matcher inClosedOpenRange(low, high) => new _InRange(low, high, true, false);
-class _InRange extends BaseMatcher {
+class _InRange extends Matcher {
final num _low, _high;
final bool _lowMatchValue, _highMatchValue;
« no previous file with comments | « pkg/unittest/lib/src/map_matchers.dart ('k') | pkg/unittest/lib/src/operator_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698