Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmednfwela committed Jan 10, 2025
1 parent 4f0235e commit 7348c98
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/utils/wait_for.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,7 @@ extension TaskWaiterForLists on Iterable<Task> {
.removeWhere((element) => completedTasks.containsKey(element));

if (remainingUids.isEmpty) {
return originalUids
.map((e) => completedTasks[e.uid])
.nonNulls
.toList();
return originalUids.map((e) => completedTasks[e.uid]).nonNulls.toList();
}
await Future<void>.delayed(interval);
}
Expand Down

0 comments on commit 7348c98

Please sign in to comment.