Commit 1eda886e authored by Yegor's avatar Yegor Committed by GitHub

unlock device before running transition test (#6371)

parent 88cf68c8
......@@ -24,7 +24,9 @@ class GalleryTransitionTest {
final DeviceOperatingSystem os;
Future<TaskResult> call() async {
String deviceId = (await devices.workingDevice).deviceId;
Device device = await devices.workingDevice;
await device.unlock();
String deviceId = device.deviceId;
Directory galleryDirectory =
dir('${flutterDirectory.path}/examples/flutter_gallery');
await inDirectory(galleryDirectory, () async {
......
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