Unverified Commit 296eeb59 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Migrate custom_device to null safety (#92955)

parent f4d1bfed
......@@ -391,7 +391,7 @@ void main() {
processManager: processManager,
);
final LaunchResult launchResult = await appSession.start();
final LaunchResult launchResult = await appSession.start(debuggingOptions: DebuggingOptions.enabled(BuildInfo.debug));
expect(launchResult.started, true);
expect(launchResult.observatoryUri, Uri.parse('http://127.0.0.1:12345/abcd/'));
......@@ -428,7 +428,7 @@ void main() {
processManager: processManager
);
final LaunchResult launchResult = await appSession.start();
final LaunchResult launchResult = await appSession.start(debuggingOptions: DebuggingOptions.enabled(BuildInfo.debug));
expect(launchResult.started, true);
expect(launchResult.observatoryUri, Uri.parse('http://192.168.178.123:12345/abcd/'));
......
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