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

Unified Diff: tests/language/super_mixin_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/super_mixin_test.dart
diff --git a/tests/language/super_mixin_test.dart b/tests/language/super_mixin_test.dart
index 8263a1b6bd926c3b6f53e73998392d8fe8f0c0dd..154d3e5719b31988873d8b951878145fd3fd0f3d 100644
--- a/tests/language/super_mixin_test.dart
+++ b/tests/language/super_mixin_test.dart
@@ -12,9 +12,7 @@ class Mixin {
get getter => 42;
}
-class Superclass {
-
-}
+class Superclass {}
class Subclass extends Superclass with Mixin {
method() => super.getter;
@@ -22,4 +20,4 @@ class Subclass extends Superclass with Mixin {
void main() {
Expect.equals(42, new Subclass().method());
-}
+}

Powered by Google App Engine
This is Rietveld 408576698