Skip to content

Commit 8a3182d

Browse files
committed
fix tests
1 parent 445dbc4 commit 8a3182d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Diff for: packages/flutter_tools/test/general.shard/cache_test.dart

-1
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,6 @@ class FakePub extends Fake implements Pub {
12151215
bool checkUpToDate = false,
12161216
bool shouldSkipThirdPartyGenerator = true,
12171217
bool printProgress = true,
1218-
PubOutputMode outputMode = PubOutputMode.standard,
12191218
}) async {
12201219
calledGet += 1;
12211220
}

Diff for: packages/flutter_tools/test/general.shard/dart/pub_get_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ exit code: 66
675675
await pub.get(
676676
project: FlutterProject.fromDirectoryTest(fileSystem.currentDirectory),
677677
context: PubContext.flutterTests,
678-
outputMode: PubOutputMode.none,
678+
printProgress: false,
679679
);
680680
} on ToolExit {
681681
// Ignore.

Diff for: packages/flutter_tools/test/general.shard/runner/flutter_command_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ class FakePub extends Fake implements Pub {
956956
String? flutterRootOverride,
957957
bool checkUpToDate = false,
958958
bool shouldSkipThirdPartyGenerator = true,
959-
PubOutputMode outputMode = PubOutputMode.standard,
959+
bool printProgress = true,
960960
}) async { }
961961
}
962962

0 commit comments

Comments
 (0)