Skip to content

Commit 16945b5

Browse files
committed
Correct the return value of the method RunInIsolateScope (flutter#28161)
1 parent 7823b13 commit 16945b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testing/dart_isolate_runner.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void AutoIsolateShutdown::Shutdown() {
5959
latch.Signal();
6060
});
6161
latch.Wait();
62-
return true;
62+
return result;
6363
}
6464

6565
std::unique_ptr<AutoIsolateShutdown> RunDartCodeInIsolateOnUITaskRunner(

0 commit comments

Comments
 (0)