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

Unified Diff: tests/language/mixin_issue10216_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_issue10216_test.dart
diff --git a/tests/language/mixin_issue10216_test.dart b/tests/language/mixin_issue10216_test.dart
index 21d8d71865020533dc2a53bf69a5deeda1165c1b..b62c63c8e1e195ce55a883ad74057b76aa7104c0 100644
--- a/tests/language/mixin_issue10216_test.dart
+++ b/tests/language/mixin_issue10216_test.dart
@@ -4,12 +4,11 @@
import "package:expect/expect.dart";
-class A {
+class A {
foo(x, [y]) => '$x;$y';
}
-class B extends A with M1, M2, M3 {
-}
+class B extends A with M1, M2, M3 {}
class M1 {}
@@ -26,9 +25,9 @@ makeB() {
main() {
var b = makeB();
- Expect.equals('1;2', b.foo(1,2));
+ Expect.equals('1;2', b.foo(1, 2));
Expect.equals('2;null', b.foo(2));
Expect.equals('P 3', b.plain(3));
- Expect.equals('100,4', b.bar(4,100));
+ Expect.equals('100,4', b.bar(4, 100));
Expect.equals('null,5', b.bar(5));
}

Powered by Google App Engine
This is Rietveld 408576698