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

Unified Diff: tests/corelib_strong/apply3_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/corelib_strong/apply3_test.dart
diff --git a/tests/corelib_strong/apply3_test.dart b/tests/corelib_strong/apply3_test.dart
index 4f7051ed6710c4abeb8ab035e00ea78d1ee2ca5e..d96fa0d264e7fbe39df529bb218c8c1a7c21826d 100644
--- a/tests/corelib_strong/apply3_test.dart
+++ b/tests/corelib_strong/apply3_test.dart
@@ -30,8 +30,8 @@ main() {
var symbol = const Symbol('a');
var requiredParameters = [1];
var optionalParameters = new Map<Symbol, int>()..[symbol] = 42;
- Invocation i = Function.apply(
- new G(), requiredParameters, optionalParameters);
+ Invocation i =
+ Function.apply(new G(), requiredParameters, optionalParameters);
Expect.equals(const Symbol('call'), i.memberName);
Expect.listEquals(requiredParameters, i.positionalArguments);

Powered by Google App Engine
This is Rietveld 408576698