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

Unified Diff: tests/language/implicit_super_constructor_call_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/implicit_super_constructor_call_test.dart
diff --git a/tests/language/implicit_super_constructor_call_test.dart b/tests/language/implicit_super_constructor_call_test.dart
index 70a34af25a505ddb7ac1230ee5d4c7e8000b2529..c1d25d334419b28e80c30f9862e4aeda7948afd7 100644
--- a/tests/language/implicit_super_constructor_call_test.dart
+++ b/tests/language/implicit_super_constructor_call_test.dart
@@ -16,11 +16,10 @@ class A {
}
class C extends A {
- C(foobar) { }
+ C(foobar) {}
}
main() {
var c = new C(499);
Expect.equals("foo", c.x.toString());
}
-

Powered by Google App Engine
This is Rietveld 408576698