Make devicelab tests use 'app' template (#22694)

Fixes the build after my module rename broke the Windows tests.
This commit is contained in:
Greg Spencer 2018-10-04 14:30:59 -07:00 committed by GitHub
parent 9f23866a0a
commit 3246a66374
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,7 @@ class FlutterProject {
await inDirectory(directory, () async {
await flutter(
'create',
options: <String>['--org', 'io.flutter.devicelab']..addAll(options)..add('plugintest')
options: <String>['--template=app', '--org', 'io.flutter.devicelab']..addAll(options)..add('plugintest')
);
});
return FlutterProject(directory, 'plugintest');