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

Unified Diff: tests/corelib/hashcode_boxed_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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: tests/corelib/hashcode_boxed_test.dart
diff --git a/tests/corelib/hashcode_boxed_test.dart b/tests/corelib/hashcode_boxed_test.dart
index 6b1d44c7298302ffaa8c025eefabbe531277a518..e23c75aea1d8c5896a6fd221594c50957c52a094 100644
--- a/tests/corelib/hashcode_boxed_test.dart
+++ b/tests/corelib/hashcode_boxed_test.dart
@@ -5,7 +5,7 @@
import "package:expect/expect.dart";
double fib(double n) {
- return n <= 1.0 ? 1.0 : fib(n-1) + fib(n-2);
+ return n <= 1.0 ? 1.0 : fib(n - 1) + fib(n - 2);
}
main() {

Powered by Google App Engine
This is Rietveld 408576698