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

Unified Diff: tests/lib/mirrors/invoke_closurization2_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/invoke_closurization2_test.dart
diff --git a/tests/lib/mirrors/invoke_closurization2_test.dart b/tests/lib/mirrors/invoke_closurization2_test.dart
index 45201a2edd4408e9521c85575adbd21a432162ce..299864a905640bdfba7773d3474da6132fe640f3 100644
--- a/tests/lib/mirrors/invoke_closurization2_test.dart
+++ b/tests/lib/mirrors/invoke_closurization2_test.dart
@@ -90,11 +90,11 @@ main() {
f = getAMirror().getField(#indexOf);
Expect.equals("indexOf-499", f.invoke(#call, [499], {}).reflectee);
f = getAMirror().getField(#lastIndexOf);
- Expect.equals("lastIndexOf-FOO,BAR",
- f.invoke(#call, ["FOO", "BAR"]).reflectee);
+ Expect.equals(
+ "lastIndexOf-FOO,BAR", f.invoke(#call, ["FOO", "BAR"]).reflectee);
f = getAMirror().getField(#splitMapJoin);
Expect.equals("splitMapJoin-1,2,3",
- f.invoke(#call, [1], {#onMatch: 2, #onNonMatch: 3}).reflectee);
+ f.invoke(#call, [1], {#onMatch: 2, #onNonMatch: 3}).reflectee);
f = getAMirror().getField(#trim);
Expect.equals("trim-true", f.invoke(#call, [], {#named: true}).reflectee);
@@ -121,11 +121,10 @@ main() {
f = getAMirror().getField(#indexOf);
Expect.equals("indexOf-499", f.invoke(#call, [499], {}).reflectee);
f = getAMirror().getField(#matchAsPrefix);
- Expect.equals("matchAsPrefix-FOO,BAR",
- f.invoke(#call, ["FOO", "BAR"]).reflectee);
+ Expect.equals(
+ "matchAsPrefix-FOO,BAR", f.invoke(#call, ["FOO", "BAR"]).reflectee);
f = getAMirror().getField(#toList);
- Expect.equals("toList-1",
- f.invoke(#call, [], {#growable: 1}).reflectee);
+ Expect.equals("toList-1", f.invoke(#call, [], {#growable: 1}).reflectee);
f = getAMirror().getField(#toSet);
Expect.equals("toSet-true", f.invoke(#call, [], {#named: true}).reflectee);
}

Powered by Google App Engine
This is Rietveld 408576698