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); |