format parameter list (#27261)
diff --git a/packages/flutter_tools/test/src/mocks.dart b/packages/flutter_tools/test/src/mocks.dart
index 3dcc063..015b96e 100644
--- a/packages/flutter_tools/test/src/mocks.dart
+++ b/packages/flutter_tools/test/src/mocks.dart
@@ -268,12 +268,12 @@
}
@override
- void writeln([Object obj = '']) {
+ void writeln([ Object obj = '' ]) {
add(encoding.encode('$obj\n'));
}
@override
- void writeAll(Iterable<dynamic> objects, [String separator = '']) {
+ void writeAll(Iterable<dynamic> objects, [ String separator = '' ]) {
bool addSeparator = false;
for (dynamic object in objects) {
if (addSeparator) {
@@ -285,7 +285,7 @@
}
@override
- void addError(dynamic error, [StackTrace stackTrace]) {
+ void addError(dynamic error, [ StackTrace stackTrace ]) {
throw UnimplementedError();
}
@@ -482,7 +482,7 @@
return null;
}
@override
- Future<CompilerOutput> recompile(String mainPath, List<String> invalidatedFiles, {String outputPath, String packagesFilePath}) async {
+ Future<CompilerOutput> recompile(String mainPath, List<String> invalidatedFiles, { String outputPath, String packagesFilePath }) async {
fs.file(outputPath).createSync(recursive: true);
fs.file(outputPath).writeAsStringSync('compiled_kernel_output');
return CompilerOutput(outputPath, 0);