Format
diff --git a/test/result/result_captureAll_test.dart b/test/result/result_captureAll_test.dart
index fd9ab42..fb52836 100644
--- a/test/result/result_captureAll_test.dart
+++ b/test/result/result_captureAll_test.dart
@@ -20,7 +20,7 @@
 Iterable<Future<int>> futures(int count,
     {bool Function(int index)? throwWhen}) sync* {
   for (var i = 0; i < count; i++) {
-  if (throwWhen != null && throwWhen(i)) {
+    if (throwWhen != null && throwWhen(i)) {
       yield Future<int>.error('$i', someStack);
     } else {
       yield Future<int>.value(i);