Unverified Commit 609fe35f authored by Camille Simon's avatar Camille Simon Committed by GitHub

[Android] Fix Linux Android flavors_test (#116129)

* Remove flaky label

* Have test install debug version

* Fix test

* Undo change

* Properly test change

* Empty-Commit

* Revert testing changes
parent 676229f3
...@@ -17,11 +17,11 @@ Future<void> main() async { ...@@ -17,11 +17,11 @@ Future<void> main() async {
await inDirectory('${flutterDirectory.path}/dev/integration_tests/flavors', () async { await inDirectory('${flutterDirectory.path}/dev/integration_tests/flavors', () async {
await flutter( await flutter(
'install', 'install',
options: <String>['--flavor', 'paid'], options: <String>['--debug', '--flavor', 'paid'],
); );
await flutter( await flutter(
'install', 'install',
options: <String>['--flavor', 'paid', '--uninstall-only'], options: <String>['--debug', '--flavor', 'paid', '--uninstall-only'],
); );
final StringBuffer stderr = StringBuffer(); final StringBuffer stderr = StringBuffer();
await evalFlutter( await evalFlutter(
......
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