Fix the compilation (#22010)

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
This commit is contained in:
Kirill Bulatov 2024-12-14 10:02:46 +02:00 committed by GitHub
parent cbc226597c
commit 1ac60289fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()