| Index: pkg/scheduled_test/lib/src/future_group.dart
|
| diff --git a/pkg/scheduled_test/lib/src/future_group.dart b/pkg/scheduled_test/lib/src/future_group.dart
|
| index f1f64db746c98748d47768ee3bfd160bd1d9e256..05071c84e031e5fbd9ad6530ab5de5686fc1b132 100644
|
| --- a/pkg/scheduled_test/lib/src/future_group.dart
|
| +++ b/pkg/scheduled_test/lib/src/future_group.dart
|
| @@ -34,11 +34,11 @@ class FutureGroup<T> {
|
| completed = true;
|
| _completer.complete(_values);
|
| }
|
| - }).catchError((error) {
|
| + }).catchError((error, stackTrace) {
|
| if (completed) return;
|
|
|
| completed = true;
|
| - _completer.completeError(error);
|
| + _completer.completeError(error, stackTrace);
|
| }));
|
|
|
| return task;
|
|
|