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

Unified Diff: tests/lib/mirrors/inherit_field_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/lib/mirrors/inherit_field_test.dart
diff --git a/tests/lib/mirrors/inherit_field_test.dart b/tests/lib/mirrors/inherit_field_test.dart
index e70fb1754bb48bbb326d01b8fcd60e1e6252aa2b..9a6956a8c4a4b80eda0140bcbc7442e65f52b3a1 100644
--- a/tests/lib/mirrors/inherit_field_test.dart
+++ b/tests/lib/mirrors/inherit_field_test.dart
@@ -15,12 +15,10 @@ class Foo {
var field;
}
-class Bar extends Foo {
-}
+class Bar extends Foo {}
void main() {
- expect('Variable(s(field) in s(Foo))',
- reflectClass(Foo).declarations[#field]);
- expect('<null>',
- reflectClass(Bar).declarations[#field]);
+ expect(
+ 'Variable(s(field) in s(Foo))', reflectClass(Foo).declarations[#field]);
+ expect('<null>', reflectClass(Bar).declarations[#field]);
}

Powered by Google App Engine
This is Rietveld 408576698