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

Unified Diff: tests/lib/mirrors/regress_26187_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/regress_26187_test.dart
diff --git a/tests/lib/mirrors/regress_26187_test.dart b/tests/lib/mirrors/regress_26187_test.dart
index 21dded51f8a0b93ae13ec33505cd6ab78dbf7dbf..8a1cc6aff0cd77ea03d6396d6fb1311c29bb9320 100644
--- a/tests/lib/mirrors/regress_26187_test.dart
+++ b/tests/lib/mirrors/regress_26187_test.dart
@@ -19,8 +19,12 @@ typedef void f(@A() int, String);
typedef void g(@B() int, String);
main() {
- ParameterMirror fParamMirror = (reflectType(f) as TypedefMirror).referent.parameters[0];
- ParameterMirror gParamMirror = (reflectType(g) as TypedefMirror).referent.parameters[0];
- Expect.equals('.A', MirrorSystem.getName(fParamMirror.metadata[0].type.qualifiedName));
- Expect.equals('.B', MirrorSystem.getName(gParamMirror.metadata[0].type.qualifiedName));
+ ParameterMirror fParamMirror =
+ (reflectType(f) as TypedefMirror).referent.parameters[0];
+ ParameterMirror gParamMirror =
+ (reflectType(g) as TypedefMirror).referent.parameters[0];
+ Expect.equals(
+ '.A', MirrorSystem.getName(fParamMirror.metadata[0].type.qualifiedName));
+ Expect.equals(
+ '.B', MirrorSystem.getName(gParamMirror.metadata[0].type.qualifiedName));
}

Powered by Google App Engine
This is Rietveld 408576698