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

Unified Diff: tests/lib_strong/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_strong/mirrors/fake_function_without_call_test.dart
diff --git a/tests/lib_strong/mirrors/fake_function_without_call_test.dart b/tests/lib_strong/mirrors/fake_function_without_call_test.dart
index da6bd59544ea12c0b4472d29b22bd073374886ed..3cc42d5f226587cefb36419f628740eb464365d0 100644
--- a/tests/lib_strong/mirrors/fake_function_without_call_test.dart
+++ b/tests/lib_strong/mirrors/fake_function_without_call_test.dart
@@ -23,8 +23,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