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

Unified Diff: tests/language_strong/call_function2_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/language_strong/call_function2_test.dart
diff --git a/tests/language_strong/call_function2_test.dart b/tests/language_strong/call_function2_test.dart
index f9a610d62e159772688f70c4a22a1803c8edf92a..6490ebd599395466b72d60724dfbde19f3f9e3bc 100644
--- a/tests/language_strong/call_function2_test.dart
+++ b/tests/language_strong/call_function2_test.dart
@@ -16,10 +16,7 @@ class Bar {
Object baz(Object x) => x;
-var map = <String, Func>{
- 'baz': baz,
- 'bar': new Bar()
-};
+var map = <String, Func>{'baz': baz, 'bar': new Bar()};
Object test(String str, Object arg) {
return map[str].call(arg);
@@ -28,4 +25,4 @@ Object test(String str, Object arg) {
void main() {
Expect.equals(42, test('baz', 42));
Expect.equals('Bar 42', test('bar', 42));
-}
+}

Powered by Google App Engine
This is Rietveld 408576698