Unverified Commit eed8c7ad authored by Greg Spencer's avatar Greg Spencer Committed by GitHub

Fix the run_release_test devicelab test after changing output. (#22104)

parent efcd9a80
......@@ -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('Running \'gradlew assembleRelease\'...'))
if (!stdout.first.startsWith('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