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

Unified Diff: tests/language/mixin_with_two_implicit_constructors_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/mixin_with_two_implicit_constructors_test.dart
diff --git a/tests/language/mixin_with_two_implicit_constructors_test.dart b/tests/language/mixin_with_two_implicit_constructors_test.dart
index 16c3606bd662cb3ba21e6aea54a39505a0e0f761..d532daed842a2a5d6e1009b052a1166f624e6dcb 100644
--- a/tests/language/mixin_with_two_implicit_constructors_test.dart
+++ b/tests/language/mixin_with_two_implicit_constructors_test.dart
@@ -10,11 +10,9 @@ class A {
A() : field = 2;
}
-class Mixin {
-}
+class Mixin {}
-class B extends A with Mixin {
-}
+class B extends A with Mixin {}
main() {
Expect.equals(2, new B().field);

Powered by Google App Engine
This is Rietveld 408576698