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

Unified Diff: tests/language_strong/constructor3_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_strong/constructor3_test.dart
diff --git a/tests/language_strong/constructor3_test.dart b/tests/language_strong/constructor3_test.dart
index 0c5eb517261a84d8eb2d766d3d6a72d4197583be..86c511188eabba766a9692fc633ae010a58a107c 100644
--- a/tests/language_strong/constructor3_test.dart
+++ b/tests/language_strong/constructor3_test.dart
@@ -27,7 +27,9 @@ class A {
class B extends A {
var b1;
- B(x) : super(E(1), E(2)), b1 = E(4) {
+ B(x)
+ : super(E(1), E(2)),
+ b1 = E(4) {
// Implicit super call to A's body happens here.
Expect.equals(4, b1);
E(6);

Powered by Google App Engine
This is Rietveld 408576698