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

Unified Diff: tests/lib_strong/mirrors/set_field_with_final_inheritance_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_strong/mirrors/set_field_with_final_inheritance_test.dart
diff --git a/tests/lib_strong/mirrors/set_field_with_final_inheritance_test.dart b/tests/lib_strong/mirrors/set_field_with_final_inheritance_test.dart
index 6e1cd39b3ca874ddc196b74db580b634f4102c55..04e9c4cbd69812f4b2819e5d1b019b0611454950 100644
--- a/tests/lib_strong/mirrors/set_field_with_final_inheritance_test.dart
+++ b/tests/lib_strong/mirrors/set_field_with_final_inheritance_test.dart
@@ -70,7 +70,6 @@ main() {
Expect.equals(21, c.mutableWithInheritedSetter);
Expect.equals(0, c.sideEffect);
-
c = new C();
im = reflect(c);
Expect.equals(22, im.setField(#finalWithInheritedMutable, 22).reflectee);
@@ -81,7 +80,7 @@ main() {
c = new C();
im = reflect(c);
Expect.throws(() => im.setField(#finalWithInheritedFinal, 23),
- (e) => e is NoSuchMethodError);
+ (e) => e is NoSuchMethodError);
Expect.equals(14, c.finalWithInheritedFinal);
Expect.equals(5, c.superFinalWithInheritedFinal);
Expect.equals(0, c.sideEffect);
@@ -92,7 +91,6 @@ main() {
Expect.equals(15, c.finalWithInheritedSetter);
Expect.equals(6, c.sideEffect);
-
c = new C();
im = reflect(c);
Expect.equals(25, im.setField(#setterWithInheritedMutable, 25).reflectee);

Powered by Google App Engine
This is Rietveld 408576698