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

This commit is contained in:
Greg Spencer 2018-09-20 16:30:07 -07:00 committed by GitHub
parent efcd9a8001
commit eed8c7ad07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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).')))