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

Unified Diff: tests/lib/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/mirrors/set_field_with_final_inheritance_test.dart
diff --git a/tests/lib/mirrors/set_field_with_final_inheritance_test.dart b/tests/lib/mirrors/set_field_with_final_inheritance_test.dart
index 3d5b5823cb24295de763d95c87bb41d8b1a2eddd..ca167233beff8db748a6c4de01fa4a3d5dc03d0a 100644
--- a/tests/lib/mirrors/set_field_with_final_inheritance_test.dart
+++ b/tests/lib/mirrors/set_field_with_final_inheritance_test.dart
@@ -71,7 +71,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);
@@ -82,7 +81,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);
@@ -93,7 +92,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