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

Unified Diff: tests/language_strong/function_subtype_call2_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/function_subtype_call2_test.dart
diff --git a/tests/language_strong/function_subtype_call2_test.dart b/tests/language_strong/function_subtype_call2_test.dart
index 8dabe8f97ac1bb3905405b10fe83d128f9baf6e3..12487d207db17d937b64ed96ded03b841f80beb5 100644
--- a/tests/language_strong/function_subtype_call2_test.dart
+++ b/tests/language_strong/function_subtype_call2_test.dart
@@ -27,8 +27,8 @@ class D2<S, T> extends C2<T> {}
main() {
Expect.isTrue(new D1<String, bool>() is Foo, 'new D1<String, bool>() is Foo');
Expect.isTrue(new D1<String, bool>() is Bar, 'new D1<String, bool>() is Bar');
- Expect.isFalse(new D1<String, bool>() is Baz,
- 'new D1<String, bool>() is Baz');
+ Expect.isFalse(
+ new D1<String, bool>() is Baz, 'new D1<String, bool>() is Baz');
Expect.isTrue(new D1<String, bool>() is Boz, 'new D1<String, bool>() is Boz');
Expect.isFalse(new D1<bool, int>() is Foo, 'new D1<bool, int>() is Foo');
@@ -41,10 +41,10 @@ main() {
Expect.isFalse(new D1() is Baz, 'new D1() is Baz');
Expect.isTrue(new D1() is Boz, 'new D1() is Boz');
- Expect.isFalse(new D2<String, bool>() is Foo,
- 'new D2<String, bool>() is Foo');
- Expect.isFalse(new D2<String, bool>() is Bar,
- 'new D2<String, bool>() is Bar');
+ Expect.isFalse(
+ new D2<String, bool>() is Foo, 'new D2<String, bool>() is Foo');
+ Expect.isFalse(
+ new D2<String, bool>() is Bar, 'new D2<String, bool>() is Bar');
Expect.isTrue(new D2<String, bool>() is Baz, 'new D2<String, bool>() is Baz');
Expect.isTrue(new D2<String, bool>() is Boz, 'new D2<String, bool>() is Boz');

Powered by Google App Engine
This is Rietveld 408576698