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

Unified Diff: tests/lib/mirrors/set_field_with_final_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/set_field_with_final_test.dart
diff --git a/tests/lib/mirrors/set_field_with_final_test.dart b/tests/lib/mirrors/set_field_with_final_test.dart
index 8c5e979a2ea5dd6bcfae1c133d1deb64ae81aeab..bca34d6969b58a35bc3f744d84e97ece9ed530d4 100644
--- a/tests/lib/mirrors/set_field_with_final_test.dart
+++ b/tests/lib/mirrors/set_field_with_final_test.dart
@@ -20,20 +20,20 @@ get toplevelGetter => 6;
main() {
InstanceMirror im = reflect(new C());
- Expect.throws(() => im.setField(#instanceField, 7),
- (e) => e is NoSuchMethodError);
- Expect.throws(() => im.setField(#instanceGetter, 8),
- (e) => e is NoSuchMethodError);
+ Expect.throws(
+ () => im.setField(#instanceField, 7), (e) => e is NoSuchMethodError);
+ Expect.throws(
+ () => im.setField(#instanceGetter, 8), (e) => e is NoSuchMethodError);
ClassMirror cm = im.type;
- Expect.throws(() => cm.setField(#staticFinal, 9),
- (e) => e is NoSuchMethodError);
- Expect.throws(() => cm.setField(#staticGetter, 10),
- (e) => e is NoSuchMethodError);
+ Expect.throws(
+ () => cm.setField(#staticFinal, 9), (e) => e is NoSuchMethodError);
+ Expect.throws(
+ () => cm.setField(#staticGetter, 10), (e) => e is NoSuchMethodError);
LibraryMirror lm = cm.owner;
- Expect.throws(() => lm.setField(#toplevelFinal, 11),
- (e) => e is NoSuchMethodError);
- Expect.throws(() => lm.setField(#toplevelGetter, 12),
- (e) => e is NoSuchMethodError);
+ Expect.throws(
+ () => lm.setField(#toplevelFinal, 11), (e) => e is NoSuchMethodError);
+ Expect.throws(
+ () => lm.setField(#toplevelGetter, 12), (e) => e is NoSuchMethodError);
}

Powered by Google App Engine
This is Rietveld 408576698