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

Unified Diff: tests/corelib/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/apply3_test.dart
diff --git a/tests/corelib/apply3_test.dart b/tests/corelib/apply3_test.dart
index ed0e6de0564974f9ef9690f4f90a6c7bcaeaf789..12a98c41e114ab328dc94ea493aa772d79c3e4ab 100644
--- a/tests/corelib/apply3_test.dart
+++ b/tests/corelib/apply3_test.dart
@@ -30,8 +30,8 @@ main() {
var symbol = const Symbol('a');
var requiredParameters = [1];
var optionalParameters = new Map()..[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