Commit db7e4fbb authored by Todd Volkert's avatar Todd Volkert Committed by Jonah Williams

Fix test expectations per change made in #26736 (#26809)

parent 31a9626c
......@@ -63,7 +63,7 @@ void main() {
if (!(stdout.first.startsWith('Launching lib/main.dart on ') && stdout.first.endsWith(' in release mode...')))
throw 'flutter run --release had unexpected first line: ${stdout.first}';
stdout.removeAt(0);
if (!stdout.first.startsWith('Gradle task \'assembleRelease\'...'))
if (!stdout.first.startsWith('Running Gradle task \'assembleRelease\'...'))
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).')))
......
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