Unverified Commit 0f69f8e5 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[devicelab] fix flutter gallery app name (#68528)

parent 5e17a240
...@@ -477,6 +477,10 @@ class StartupTest { ...@@ -477,6 +477,10 @@ class StartupTest {
'--profile', '--profile',
]); ]);
applicationBinaryPath = '$testDirectory/build/ios/iphoneos/Runner.app'; applicationBinaryPath = '$testDirectory/build/ios/iphoneos/Runner.app';
// TODO(jonahwilliams): fix this lookup to use a machine mode.
if (!File(applicationBinaryPath).existsSync()) {
applicationBinaryPath = '"$testDirectory/build/ios/iphoneos/Flutter Gallery.app"';
}
break; break;
case DeviceOperatingSystem.fuchsia: case DeviceOperatingSystem.fuchsia:
case DeviceOperatingSystem.fake: case DeviceOperatingSystem.fake:
......
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