Unverified Commit 44bf9751 authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

remove Downloading ... stderr messages (#92211)

parent 4d70c138
......@@ -250,6 +250,9 @@ Future<void> _testFile(
if (output.first.startsWith('Running "flutter pub get" in')) {
output.removeAt(0);
}
// Whether cached artifacts need to be downloaded is dependent on what
// previous tests have run. Disregard these messages.
output.removeWhere(RegExp(r'Downloading .*\.\.\.').hasMatch);
output.add('<<stderr>>');
output.addAll((exec.stderr as String).split('\n'));
final List<String> expectations = fileSystem.file(fullTestExpectation).readAsLinesSync();
......
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