Skip to content
Snippets Groups Projects
Commit 332d12f0 authored by Keerti Parthasarathy's avatar Keerti Parthasarathy Committed by GitHub
Browse files

Add type info to prevent DDC compile time failure with 1.23.0-dev.11.0 (#580)

parent e5a40284
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,8 @@ class Engine {
/// This will be `null` if [close] was called before all the tests finished
/// running.
Future<bool> get success async {
await Future.wait([_group.future, _loadPool.done], eagerError: true);
await Future
.wait(<Future>[_group.future, _loadPool.done], eagerError: true);
if (_closedBeforeDone) return null;
return liveTests.every((liveTest) => liveTest.state.result.isPassing);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment