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

Unified Diff: samples/third_party/dromaeo/tests/Common.dart

Issue 12086028: Fix up dromaeo after lib v2 merge and add Dromaeo smoketest to prevent future (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « samples/third_party/dromaeo/index.html ('k') | samples/third_party/dromaeo/tests/dom-attr-html.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/third_party/dromaeo/tests/Common.dart
diff --git a/samples/third_party/dromaeo/tests/Common.dart b/samples/third_party/dromaeo/tests/Common.dart
index 34c75dea6cb93bae688cc1fc8622259c98cc26d3..f763fb98a2f62ab0c490556f63591d75dda0c84e 100644
--- a/samples/third_party/dromaeo/tests/Common.dart
+++ b/samples/third_party/dromaeo/tests/Common.dart
@@ -39,7 +39,7 @@ class Result {
}
factory Result(List<double> runsPerSecond) {
- runsPerSecond.sort();
+ runsPerSecond.sort((a, b) => a.compareTo(b));
return new Result._internal(runsPerSecond);
}
« no previous file with comments | « samples/third_party/dromaeo/index.html ('k') | samples/third_party/dromaeo/tests/dom-attr-html.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698