File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/flutter_tools/test/general.shard Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2130,10 +2130,10 @@ flutter:
21302130 vmServiceUris: Stream <Uri >.value (testUri),
21312131 );
21322132 final Completer <void > done = Completer <void >();
2133- await runZonedGuarded (
2133+ unawaited ( runZonedGuarded (
21342134 () => flutterDevice.connect (allowExistingDdsInstance: true ).then ((_) => done.complete ()),
21352135 (_, __) => done.complete (),
2136- );
2136+ )) ;
21372137 await done.future;
21382138 expect (device.dds.uri, Uri .parse ('http://localhost/existingDdsInField' ));
21392139 }, overrides: < Type , Generator > {
@@ -2164,10 +2164,10 @@ flutter:
21642164 vmServiceUris: Stream <Uri >.value (testUri),
21652165 );
21662166 final Completer <void >done = Completer <void >();
2167- await runZonedGuarded (
2167+ unawaited ( runZonedGuarded (
21682168 () => flutterDevice.connect (allowExistingDdsInstance: true ).then ((_) => done.complete ()),
21692169 (_, __) => done.complete (),
2170- );
2170+ )) ;
21712171 await done.future;
21722172 expect (device.dds.uri, Uri .parse ('http://localhost/existingDdsInMessage' ));
21732173 }, overrides: < Type , Generator > {
You can’t perform that action at this time.
0 commit comments