Skip to content

Commit 0bfc904

Browse files
Fix DAG parallel test harness
Co-authored-by: EvalOpsBot <EvalOpsBot@users.noreply.github.com>
1 parent 4ac4883 commit 0bfc904

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/dag.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ mod tests {
629629
|node| {
630630
let active = Arc::clone(&active);
631631
let max_active = Arc::clone(&max_active);
632-
async move {
632+
Ok(async move {
633633
if node != TestNode::Root {
634634
let current = active.fetch_add(1, Ordering::SeqCst) + 1;
635635
let observed_max = max_active.load(Ordering::SeqCst);
@@ -641,7 +641,7 @@ mod tests {
641641
}
642642
Ok(node.name().to_string())
643643
}
644-
.boxed()
644+
.boxed())
645645
},
646646
|_, output| {
647647
applied.push(output);

0 commit comments

Comments
 (0)