Remove redundant arguments passed to redirecting factory constructors (#115497)
This commit is contained in:
parent
26a990f610
commit
f255390f4d
@ -116,7 +116,6 @@ class TestCompiler {
|
||||
buildMode: buildInfo.mode,
|
||||
trackWidgetCreation: buildInfo.trackWidgetCreation,
|
||||
initializeFromDill: testFilePath,
|
||||
unsafePackageSerialization: false,
|
||||
dartDefines: buildInfo.dartDefines,
|
||||
packagesPath: buildInfo.packagesPath,
|
||||
extraFrontEndOptions: buildInfo.extraFrontEndOptions,
|
||||
|
@ -87,7 +87,7 @@ void main() {
|
||||
final WindowsStdoutLogger logger = WindowsStdoutLogger(
|
||||
outputPreferences: OutputPreferences.test(),
|
||||
stdio: stdio,
|
||||
terminal: Terminal.test(supportsColor: false, supportsEmoji: false),
|
||||
terminal: Terminal.test(),
|
||||
);
|
||||
|
||||
logger.printStatus('🔥🖼️✗✓🔨💪✏️');
|
||||
|
@ -33,7 +33,7 @@ void main() {
|
||||
final String? oldRoot = Cache.flutterRoot;
|
||||
final Directory tempDir = fileSystem.systemTempDirectory.createTempSync('cache_test.');
|
||||
final BufferLogger logger = BufferLogger(
|
||||
terminal: Terminal.test(supportsColor: false, supportsEmoji: false),
|
||||
terminal: Terminal.test(),
|
||||
outputPreferences: OutputPreferences(),
|
||||
);
|
||||
logger.fatalWarnings = true;
|
||||
@ -114,7 +114,7 @@ Future<void> main(List<String> args) async {
|
||||
final String? oldRoot = Cache.flutterRoot;
|
||||
final Directory tempDir = fileSystem.systemTempDirectory.createTempSync('cache_test.');
|
||||
final BufferLogger logger = BufferLogger(
|
||||
terminal: Terminal.test(supportsColor: false, supportsEmoji: false),
|
||||
terminal: Terminal.test(),
|
||||
outputPreferences: OutputPreferences(),
|
||||
);
|
||||
logger.fatalWarnings = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user