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

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
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 24002f534d46ced69fab0318b4e4512609f45e5d..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(int _(double a, double b) => a.compareTo(b));
+ runsPerSecond.sort((a, b) => a.compareTo(b));
return new Result._internal(runsPerSecond);
}

Powered by Google App Engine
This is Rietveld 408576698