Unverified Commit 264381a6 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Default optional bool param to false (#33704)

In runTests, we previously now default the optional boolean `web`
parameter to false to ensure (or at least improve the odds) that the
conditional on line 70 evaluates to true or false.
parent 98ea5019
...@@ -44,7 +44,7 @@ Future<int> runTests( ...@@ -44,7 +44,7 @@ Future<int> runTests(
FlutterProject flutterProject, FlutterProject flutterProject,
String icudtlPath, String icudtlPath,
Directory coverageDirectory, Directory coverageDirectory,
bool web, bool web = false,
}) async { }) async {
// Compute the command-line arguments for package:test. // Compute the command-line arguments for package:test.
final List<String> testArgs = <String>[]; final List<String> testArgs = <String>[];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment