Fix the compilation (#22010)

Kirill Bulatov created

https://github.com/zed-industries/zed/pull/21706 was merged after
https://github.com/zed-industries/zed/pull/22004 and the CI missed that.

Release Notes:

- N/A

Change summary

crates/project/src/task_inventory.rs | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

Detailed changes

crates/project/src/task_inventory.rs 🔗

@@ -427,7 +427,10 @@ mod test_inventory {
                 .into_iter()
                 .filter_map(|(source_kind, task)| {
                     let id_base = source_kind.to_id_base();
-                    Some((source_kind, task.resolve_task(&id_base, task_context)?))
+                    Some((
+                        source_kind,
+                        task.resolve_task(&id_base, Default::default(), task_context)?,
+                    ))
                 })
                 .map(|(source_kind, resolved_task)| (source_kind, resolved_task.resolved_label))
                 .collect()