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; |
} |