Unverified Commit 7fe4ea24 authored by Emmanuel Garcia's avatar Emmanuel Garcia Committed by GitHub

Fix stdout test (#43927)

parent c48f76c7
......@@ -73,7 +73,7 @@ void main() {
throw 'flutter run --release had unexpected second line: ${stdout.first}';
}
stdout.removeAt(0);
if (!(stdout.first.startsWith('Built build/app/outputs/apk/release/app-release.apk (') && stdout.first.endsWith('MB).'))) {
if (!(stdout.first.contains('Built build/app/outputs/apk/release/app-release.apk (') && stdout.first.contains('MB).'))) {
throw 'flutter run --release had unexpected third line: ${stdout.first}';
}
stdout.removeAt(0);
......
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