Skip to content

Commit 332d12f

Browse files
authored
Add type info to prevent DDC compile time failure with 1.23.0-dev.11.0 (#580)
1 parent e5a4028 commit 332d12f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/src/runner/engine.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ class Engine {
9090
/// This will be `null` if [close] was called before all the tests finished
9191
/// running.
9292
Future<bool> get success async {
93-
await Future.wait([_group.future, _loadPool.done], eagerError: true);
93+
await Future
94+
.wait(<Future>[_group.future, _loadPool.done], eagerError: true);
9495
if (_closedBeforeDone) return null;
9596
return liveTests.every((liveTest) => liveTest.state.result.isPassing);
9697
}

0 commit comments

Comments
 (0)