fix tests

This commit is contained in:
Andrew Kolos 2023-01-11 12:57:41 -08:00
parent 445dbc443d
commit 8a3182d3b9
3 changed files with 2 additions and 3 deletions

View File

@ -1215,7 +1215,6 @@ class FakePub extends Fake implements Pub {
bool checkUpToDate = false, bool checkUpToDate = false,
bool shouldSkipThirdPartyGenerator = true, bool shouldSkipThirdPartyGenerator = true,
bool printProgress = true, bool printProgress = true,
PubOutputMode outputMode = PubOutputMode.standard,
}) async { }) async {
calledGet += 1; calledGet += 1;
} }

View File

@ -675,7 +675,7 @@ exit code: 66
await pub.get( await pub.get(
project: FlutterProject.fromDirectoryTest(fileSystem.currentDirectory), project: FlutterProject.fromDirectoryTest(fileSystem.currentDirectory),
context: PubContext.flutterTests, context: PubContext.flutterTests,
outputMode: PubOutputMode.none, printProgress: false,
); );
} on ToolExit { } on ToolExit {
// Ignore. // Ignore.

View File

@ -956,7 +956,7 @@ class FakePub extends Fake implements Pub {
String? flutterRootOverride, String? flutterRootOverride,
bool checkUpToDate = false, bool checkUpToDate = false,
bool shouldSkipThirdPartyGenerator = true, bool shouldSkipThirdPartyGenerator = true,
PubOutputMode outputMode = PubOutputMode.standard, bool printProgress = true,
}) async { } }) async { }
} }