Fix impeller name swap (#106350)

This commit is contained in:
Dan Field 2022-06-21 11:17:07 -07:00 committed by GitHub
parent c12b0de004
commit adec8f23be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -8,5 +8,5 @@ import 'package:flutter_devicelab/tasks/perf_tests.dart';
Future<void> main() async {
deviceOperatingSystem = DeviceOperatingSystem.android;
await task(createListTextLayoutPerfE2ETest());
await task(createListTextLayoutPerfE2ETest(enableImpeller: true));
}

View file

@ -8,5 +8,5 @@ import 'package:flutter_devicelab/tasks/perf_tests.dart';
Future<void> main() async {
deviceOperatingSystem = DeviceOperatingSystem.android;
await task(createListTextLayoutPerfE2ETest(enableImpeller: true));
await task(createListTextLayoutPerfE2ETest());
}