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

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

Issue 45913002: pkg/unittest: Capture stackTrace in all failure cases (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: upload fail the first time Created 7 years, 2 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 | « no previous file | pkg/unittest/lib/src/test_case.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
diff --git a/pkg/unittest/lib/src/numeric_matchers.dart b/pkg/unittest/lib/src/numeric_matchers.dart
index d040efb24a5a43116e4e931e73dc619361c68e39..f733fa6bbf83f1384cb335b2d61b7ebf002b0a43 100644
--- a/pkg/unittest/lib/src/numeric_matchers.dart
+++ b/pkg/unittest/lib/src/numeric_matchers.dart
@@ -73,8 +73,8 @@ const Matcher isNonNegative =
const _OrderingComparison(0, true, false, true,
'a non-negative value', false);
-bool _isNumeric(value) {
- return value is int || value is double;
+bool _isNumeric(Object value) {
+ return value is num;
}
class _OrderingComparison extends Matcher {
« no previous file with comments | « no previous file | pkg/unittest/lib/src/test_case.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698