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

Unified Diff: tests/lib/mirrors/fake_function_without_call_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/fake_function_without_call_test.dart
diff --git a/tests/lib/mirrors/fake_function_without_call_test.dart b/tests/lib/mirrors/fake_function_without_call_test.dart
index be2bdd19ebbb810cbbf6800ca60270d704f973ea..4503b12413f053f89ea4cc774334c498730144df 100644
--- a/tests/lib/mirrors/fake_function_without_call_test.dart
+++ b/tests/lib/mirrors/fake_function_without_call_test.dart
@@ -26,8 +26,7 @@ main() {
Expect.equals('a', Function.apply(f, ['a']));
Expect.equals('a,b', Function.apply(f, ['a', 'b']));
Expect.equals('a,b,c', Function.apply(f, ['a', 'b', 'c']));
- Expect.throws(() => f.foo('a', 'b', 'c'),
- (e) => e is NoSuchMethodError);
+ Expect.throws(() => f.foo('a', 'b', 'c'), (e) => e is NoSuchMethodError);
ClosureMirror cm = reflect(f);
Expect.isTrue(cm is ClosureMirror);

Powered by Google App Engine
This is Rietveld 408576698