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

Unified Diff: tests/lib_strong/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_strong/mirrors/regress_26187_test.dart
diff --git a/tests/lib_strong/mirrors/regress_26187_test.dart b/tests/lib_strong/mirrors/regress_26187_test.dart
index 1d99362e04433e11c9f3f6c1918c86f604e43e28..6c381c78dfd4605d2e872ca8e925f8e7e80b078e 100644
--- a/tests/lib_strong/mirrors/regress_26187_test.dart
+++ b/tests/lib_strong/mirrors/regress_26187_test.dart
@@ -18,8 +18,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