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

Unified Diff: pkg/unittest/test/test_common.dart

Issue 145403005: pkg/unittest: formatter spin (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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: pkg/unittest/test/test_common.dart
diff --git a/pkg/unittest/test/test_common.dart b/pkg/unittest/test/test_common.dart
index 863176883e87b301ea653117b234eb751ee9354a..da9e9e509814becf92b814129c218004ab887685 100644
--- a/pkg/unittest/test/test_common.dart
+++ b/pkg/unittest/test/test_common.dart
@@ -25,8 +25,8 @@ class SimpleIterable extends IterableBase {
bool contains(int val) => count < val ? false : true;
bool any(bool f(element)) {
- for(var i = 0; i <= count; i++) {
- if(f(i)) return true;
+ for (var i = 0; i <= count; i++) {
+ if (f(i)) return true;
}
return false;
}

Powered by Google App Engine
This is Rietveld 408576698