File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -474,9 +474,10 @@ class ChromeProxyService implements VmServiceInterface {
474474 final isolate = inspector.isolate;
475475
476476 final debugger = await debuggerFuture;
477- for (final breakpoint in isolate.breakpoints? .toList () ?? < Breakpoint > []) {
478- await debugger.removeBreakpoint (breakpoint.id! );
479- }
477+ await Future .wait ([
478+ for (final breakpoint in isolate.breakpoints ?? < Breakpoint > [])
479+ debugger.removeBreakpoint (breakpoint.id! ),
480+ ]);
480481 }
481482
482483 @override
Original file line number Diff line number Diff line change @@ -418,7 +418,7 @@ void main() {
418418 // the old string still as the closure has not been reevaluated.
419419 await callEvaluateAndExpectLog (oldCapturedString);
420420 });
421- }, timeout: Timeout .factor (2 ));
421+ }, timeout: Timeout .factor (3 ));
422422
423423 group ('when pause_isolates_on_start is false' , () {
424424 late VmService client;
You can’t perform that action at this time.
0 commit comments