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

Unified Diff: tests/language/constructor8_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/language/constructor8_test.dart
diff --git a/tests/language/constructor8_test.dart b/tests/language/constructor8_test.dart
index e11d75785f7e5ced42973621e076e4bee70cab85..9fb376259a33680a7ee905b2b3ab716bcdedf0cf 100644
--- a/tests/language/constructor8_test.dart
+++ b/tests/language/constructor8_test.dart
@@ -13,7 +13,9 @@ class A {
// when it created the call to the constructor body.
A.withClosure(Map a) {
var c;
- var f = () { return c = 42; };
+ var f = () {
+ return c = 42;
+ };
b = f();
Expect.equals(42, b);
Expect.equals(42, c);

Powered by Google App Engine
This is Rietveld 408576698